Sha256: 6681fdbf0299b76569e07614f68059902331a29e0c64d75f770d8b3479b8408a
Contents?: true
Size: 1.78 KB
Versions: 4
Compression:
Stored size: 1.78 KB
Contents
module Fae class UtilitiesController < ApplicationController def toggle klass = params[:object].gsub('__', '/').classify.constantize if can_toggle(klass) klass.find(params[:id]).toggle(params[:attr]).save(validate: false) render nothing: true else render nothing: true, status: :unauthorized end end def sort if request.xhr? ids = params[params[:object]] klass = params[:object].gsub('fae_', 'fae/').gsub('__', '/').classify.constantize items = klass.find(ids) items.each do |item| position = ids.index(item.id.to_s) + 1 item.update_attribute(:position, position) end end render nothing: true end def language_preference if params[:language].present? && (params[:language] == 'all' || Fae.languages.has_key?(params[:language].to_sym)) current_user.update_column(:language, params[:language]) end render nothing: true end def global_search if params[:query].present? && params[:query].length > 2 search_locals = { navigation_items: @fae_navigation.search(params[:query]), records: records_by_display_name(params[:query]) } else search_locals = { show_nav: true } end render partial: 'global_search_results', locals: search_locals end private def can_toggle(klass) # restrict models that non-admins aren't allowed to update restricted_classes = %w(Fae::User Fae::Role Fae::Option) return false if restricted_classes.include?(klass.name.to_s) && !current_user.super_admin_or_admin? true end def records_by_display_name(query) records = [] all_models.each do |m| records += m.fae_search(query) end records end end end
Version data entries
4 entries across 4 versions & 1 rubygems