Sha256: 4c3293c816e3ff99a6fa25560e3e5e011f3cf4bfa6cff492fd15639c3b1d8f6f
Contents?: true
Size: 1.08 KB
Versions: 14
Compression:
Stored size: 1.08 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. class Concepts::ExpiredController < Concepts::AlphabeticalController protected def find_labelings Iqvoc::Concept.pref_labeling_class. concept_expired. label_begins_with(params[:prefix]). by_label_language(I18n.locale). includes(:target). order("LOWER(#{Label::Base.table_name}.value)"). joins(:owner). where(concepts: { type: Iqvoc::Concept.base_class_name }). references(:concepts, :labels, :labelings). page(params[:page]) end end
Version data entries
14 entries across 14 versions & 1 rubygems