Sha256: 3801f373194c90acd0796de61c52af49101b83218ef3a60163aa86eb8c63d840

Contents?: true

Size: 1.42 KB

Versions: 4

Compression:

Stored size: 1.42 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(Arel.sql('LOWER(labels.value)')).page(params[:page])
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
iqvoc-4.14.5 app/controllers/concepts/untranslated_controller.rb
iqvoc-4.14.4 app/controllers/concepts/untranslated_controller.rb
iqvoc-4.13.2 app/controllers/concepts/untranslated_controller.rb
iqvoc-4.13.0 app/controllers/concepts/untranslated_controller.rb