# user.rb
def self.admin
where(admin: true).first
end
redirect_to @profile if response.query_string # здесь запрос в базу, я не ебу эти ваши пидерские nosql базы
class EatShitController < ApplicationController
# some code
def lets_eat
TriggerForYourPeaceOfShit.call(params[:ids]) # здесь передаешь массив
end
end
class TriggerForYourPeaceOfShit
def call(ids)
YourShittyModel.where(id: ids).each do |your_object|
your_object.toggle(:some_boolean_crap)
end
end
end
$(document).ready ->
history.pushState('', 'New Page Title', gon.absolute_url)
# роут для фильтра
get '/search/*filter', to: 'wallpapers#search', as: 'filter'