mirror of
https://github.com/openSUSE/osem.git
synced 2026-02-07 04:31:00 -05: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
|