You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
841 B
25 lines
841 B
# All Administrate controllers inherit from this
|
|
# `Administrate::ApplicationController`, making it the ideal place to put
|
|
# authentication logic or other before_actions.
|
|
#
|
|
# If you want to add pagination or other controller-level concerns,
|
|
# you're free to overwrite the RESTful controller actions.
|
|
module Admin
|
|
class ApplicationController < Administrate::ApplicationController
|
|
before_action :authenticate_admin
|
|
|
|
def authenticate_admin
|
|
redirect_to root_path, alert: "Kein Zugriff!" unless current_user.email =="christoph@marzell.net"
|
|
end
|
|
|
|
def is_admin?
|
|
current_user&.email =="christoph@marzell.net"
|
|
end
|
|
|
|
# Override this value to specify the number of elements to display at a time
|
|
# on index pages. Defaults to 20.
|
|
# def records_per_page
|
|
# params[:per_page] || 20
|
|
# end
|
|
end
|
|
end
|