RailsEventStore/cqrs-es-sample-with-res

View on GitHub
ecommerce/authentication/lib/authentication/commands/set_password_hash.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Authentication
  class SetPasswordHash < Infra::Command
    attribute :account_id, Infra::Types::UUID
    attribute :password_hash, Infra::Types::String
    alias aggregate_id account_id
  end
end