Mam tak
[code]class ApplicationController < ActionController::Base
helper_method :autor?
public
def autor?
@autor ||= User.find(session[:user_id]) if session[:user_id]
if @autor.status > 0
return true
else
flash[:notice] = "Nie jestes autorem"
redirect_to root_url
return false
end
end[/code]
W Klasie Panel mam <% if @autor %> i niestety nadal nie działa tak jak powinno