hicknhack-software/rails-disco

View on GitHub
active_domain/app/models/active_domain/event.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ActiveDomain
  class Event < ActiveEvent::Event
    self.table_name = 'domain_events'

    # allow write inside the domain
    def readonly?
      @readonly
    end
  end
end