Sha256: ceafac4e3a176ce4742e6c5a519ff0e102f46d77152d179681d9ca38475dae5c

Contents?: true

Size: 1.41 KB

Versions: 8

Compression:

Stored size: 1.41 KB

Contents

# encoding: UTF-8

# Copyright 2011-2013 innoQ Deutschland GmbH
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# TODO: This class (including the view) should not exist! Please move this back
# into the alphabetical_controller. The only difference between those two
# controllers is the scope used. Use if statements or published methods instead.
# "DRYness"
class Concepts::UntranslatedController < ConceptsController

  def index
    authorize! :read, Concept::Base

    scope = Iqvoc::Concept.pref_labeling_class.label_class.
      begins_with(params[:prefix]).
      missing_translation(I18n.locale, Iqvoc::Concept.pref_labeling_languages.first)

    if I18n.locale.to_s == Iqvoc::Concept.pref_labeling_languages.first # TODO: Should be 404!
      @labels = []
      flash.now[:error] = I18n.t("txt.views.untranslated_concepts.unavailable")
    else
      @labels = scope.order("LOWER(labels.value)").page(params[:page])
    end
  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
iqvoc-4.3.3 app/controllers/concepts/untranslated_controller.rb
iqvoc-4.3.2 app/controllers/concepts/untranslated_controller.rb
iqvoc-4.3.1 app/controllers/concepts/untranslated_controller.rb
iqvoc-4.3.0 app/controllers/concepts/untranslated_controller.rb
iqvoc-4.2.0 app/controllers/concepts/untranslated_controller.rb
iqvoc-4.1.3 app/controllers/concepts/untranslated_controller.rb
iqvoc-4.1.2 app/controllers/concepts/untranslated_controller.rb
iqvoc-4.1.1 app/controllers/concepts/untranslated_controller.rb