-
Notifications
You must be signed in to change notification settings - Fork 0
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
family life gift card app #5
base: initial
Are you sure you want to change the base?
Conversation
able to generate now and proper auth on the admin for issuances - no editing issuance after gift cards are created
various other fixes and progress towards issuing and displaying gift cards
store gift card type on each gift card
we don't use sidekiq but it's already set up in terraform and could be used in the future, so it's good to have
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have not looked closely at app/admin stuff, but that part will be proved out in UAT, I expect.
end | ||
|
||
# largest number in certificates represented in x's in format, for all certificates matching format | ||
def largest_existing_number_in_certificate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will definitely needs tests for this ;-)
…-cards into rails_7_rebase
fix typo Co-authored-by: Mark Knutsen <[email protected]>
…-cards into rails_7_rebase
don't filter out certificate column in gift cards
…-cards into rails_7_rebase
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: still must fix 'cap_test' in config/database.yml
Co-authored-by: Mark Knutsen <[email protected]>
…-cards into rails_7_rebase
gc.registrations_available = row["numberRegistrations"].to_i | ||
gc.certificate_value = row["certificateValue"].to_d | ||
gc.gl_code = row["glCode"] | ||
gc.created_at = DateTime.parse(row["addDate"]) if row["created_at"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gc.created_at = DateTime.parse(row["addDate"]) if row["created_at"] | |
gc.created_at = DateTime.parse(row["addDate"]) if row["addDate"] |
...perhaps?
No description provided.