mirror of
https://github.com/openSUSE/osem.git
synced 2026-06-14 10:47:03 -04:00
8 lines
159 B
Ruby
8 lines
159 B
Ruby
class OrganizationsController < ApplicationController
|
|
load_and_authorize_resource :organization
|
|
|
|
def index
|
|
@organizations = Organization.all
|
|
end
|
|
end
|