mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 11:44:02 +00:00
24 lines
273 B
Ruby
24 lines
273 B
Ruby
class Admin::PeopleController < ApplicationController
|
|
before_filter :verify_organizer
|
|
layout "admin"
|
|
|
|
def index
|
|
@people = Person.all
|
|
end
|
|
|
|
def create
|
|
|
|
end
|
|
|
|
def show
|
|
@person = Person.find(params[:id])
|
|
end
|
|
|
|
def update
|
|
|
|
end
|
|
|
|
def delete
|
|
|
|
end
|
|
end
|