Skip to content

Instantly share code, notes, and snippets.

@bhserna
Created November 11, 2016 17:43
Show Gist options
  • Save bhserna/554fd706f67001e68a3015bc46a0dac0 to your computer and use it in GitHub Desktop.
Save bhserna/554fd706f67001e68a3015bc46a0dac0 to your computer and use it in GitHub Desktop.
5 Rules - Inject dependencies
class Admin::ProjectFundingTerminationsController < Admin::BaseController
def destroy
Projects.revert_funding_termination(
find_project,
projects_store: Project,
receipts_cancelator: ReceiptsCancelator
)
redirect_to admin_projects_path
end
private
def find_project
Project.find_by_slug params[:project_id]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment