mirror of
https://github.com/wahyd4/libr-2.git
synced 2026-08-09 05:15:53 +10:00
14 lines
272 B
Ruby
14 lines
272 B
Ruby
class ApplicationController < ActionController::Base
|
|
include ActionController::Serialization
|
|
|
|
serialization_scope :view_context
|
|
before_action :current_user!
|
|
|
|
def current_user!
|
|
@current_user = nil
|
|
@current_user = current_user if user_signed_in?
|
|
end
|
|
|
|
|
|
end
|