osem-fcy/app/controllers/admin/invites_controller.rb
Rahul 654760c3fc initialize invites
Invites model,controller and views are initialized.

add datepicker and selectize in invites#new

calender is added for end date field and selectize is added for emails field to allow multiple emails in field
2019-10-24 23:26:37 +05:30

11 lines
222 B
Ruby

module Admin
class InvitesController < Admin::BaseController
load_and_authorize_resource :conference, find_by: :short_title
def new
@invite = @conference.invites.new
end
def create; end
end
end