Skip to content

Commit

Permalink
feat(e&o): add school picker to case creation
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwinKruglov committed Sep 29, 2023
1 parent 81e1c6a commit 2212e03
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module CaseRequests
class SchoolPickersController < ApplicationController
before_action -> { @back_url = engagement_cases_path }, only: %i[edit update]

def edit
@school_picker = CaseRequest::SchoolPicker.new
end
end
end
7 changes: 7 additions & 0 deletions app/models/case_request/school_picker.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module CaseRequest
class SchoolPicker
include ActiveModel::Model


end
end

0 comments on commit 2212e03

Please sign in to comment.