mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-07-08 09:00:23 +09:00
df76a227dc
First open source release of Campfire 🎉
7 lines
131 B
Ruby
7 lines
131 B
Ruby
module Authorization
|
|
private
|
|
def ensure_can_administer
|
|
head :forbidden unless Current.user.can_administer?
|
|
end
|
|
end
|