mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-31 19:45:45 +00:00
15 lines
225 B
Ruby
15 lines
225 B
Ruby
module ApplicationHelper
|
|
def tournament_permissions(tournament)
|
|
if user_signed_in?
|
|
if tournament.user == current_user
|
|
return true
|
|
else
|
|
return false
|
|
end
|
|
else
|
|
return false
|
|
end
|
|
end
|
|
|
|
end
|