You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
271 B
30 lines
271 B
6 years ago
|
class PartnersController < ApplicationController
|
||
|
layout 'base_management'
|
||
|
|
||
|
def index
|
||
|
@menu_type = 6
|
||
|
@sub_type = 3
|
||
|
|
||
|
@partners = Partner.includes(:school)
|
||
|
end
|
||
|
|
||
|
def new
|
||
|
|
||
|
end
|
||
|
|
||
|
def edit
|
||
|
|
||
|
end
|
||
|
|
||
|
def create
|
||
|
|
||
|
end
|
||
|
|
||
|
def destroy
|
||
|
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
end
|