mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-23 01:03:21 +00:00
8 lines
155 B
Ruby
8 lines
155 B
Ruby
module Admin
|
|
class EnterpriseRolesController < ResourceController
|
|
def index
|
|
@enterprise_roles = EnterpriseRole.by_user_email
|
|
end
|
|
end
|
|
end
|