bruz/bookshelf-delivery-example

View on GitHub
lib/bookshelf/entities/activity.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Activity
  include Hanami::Entity

  attributes :timestamp, :action, :old_title, :old_author, :new_title,
             :new_author

  module Action
    CREATE = 'create'.freeze
    UPDATE = 'update'.freeze
    DELETE = 'delete'.freeze
  end
end