5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-03 00:06:08 +00:00
panel/app/controllers/application_controller.rb

23 lines
461 B
Ruby
Raw Normal View History

2018-01-29 22:19:10 +00:00
# Forma de ingreso a Sutty
2018-01-02 17:19:25 +00:00
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
2018-01-29 18:09:30 +00:00
2018-01-29 22:19:10 +00:00
# No tenemos índice de sutty, vamos directamente a ver el listado de
# sitios
2018-01-29 18:09:30 +00:00
def index
redirect_to sites_path
end
2018-01-29 22:19:10 +00:00
private
# Encontrar un sitio por su ID
# TODO volverlo más natural a rails
def find_site
id = params[:site_id] || params[:id]
current_user.sites.find do |s|
s.id == id
end
end
2018-01-02 17:19:25 +00:00
end