Skip to content

Instantly share code, notes, and snippets.

View AriefLuthfi79's full-sized avatar
🚩
I need my own space

Arief Luthfi AriefLuthfi79

🚩
I need my own space
  • Zahir Internasional, Indonesia
  • Kretek Bantul, Yogyakarta
View GitHub Profile
# app/models/permissions/admin_permission.rb
module Permissions
class AdminPermission < BasePermission
def initialize(user)
allow_all
end
end
end