mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-10 07:50:33 -07:00
school is a high school and if the admin data item is for high schools only. Finishes: #181154375.
11 lines
280 B
Ruby
11 lines
280 B
Ruby
class AdminDataItem < ActiveRecord::Base
|
|
belongs_to :measure
|
|
|
|
scope :for_measures, ->(measure) {
|
|
joins(:measure).where('admin_data_items.measure': measure)
|
|
}
|
|
|
|
scope :non_hs_items_for_measures, ->(measure) {
|
|
for_measures(measure).where(hs_only_item: false)
|
|
}
|
|
end
|