Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add additional enum methods #276

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

derikson
Copy link

@derikson derikson commented Mar 6, 2024

  • Add negative scopes generated by enum.
  • Add method that returns the mapping of enum name to database value.

Example:

class User < ApplicationRecord
  enum status: {
    temporary: 1,
    accepted: 2
  }
end

# RBS is generated for these scopes
User.not_temporary
User.not_accepted
# RBS is generated for the mapping method
User.status # => { temporary: 1, accepted: 2 }

@derikson
Copy link
Author

derikson commented Mar 6, 2024

Incidentally, is there a reason singleton method signatures are added to the model class instead of using extend GeneratedRelationMethods?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant