Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/controllers/case_contacts_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class CaseContactsController < ApplicationController
before_action :set_case_contact, only: %i[edit destroy]
before_action :set_contact_types, only: %i[new edit update create]
before_action :set_contact_types, only: %i[new edit create]
before_action :require_organization!
after_action :verify_authorized, except: %i[leave]

Expand Down
2 changes: 1 addition & 1 deletion app/controllers/court_dates_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ class CourtDatesController < ApplicationController
include CourtDateParams

before_action :set_casa_case
before_action :set_court_date, only: %i[edit show generate update destroy]
before_action :set_court_date, only: %i[edit show update destroy]
before_action :require_organization!

rescue_from ActiveRecord::RecordNotFound, with: -> { head :not_found }
Expand Down