mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
25 lines
273 B
Ruby
25 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
|