saasbook/esaas-engagements

View on GitHub
app/controllers/orgs/comments_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Orgs::CommentsController < CommentsController
    before_action :set_commentable

private
    def set_commentable
        @commentable = Org.find(params[:org_id])
    end
end