Skip to content

Commit

Permalink
Update with real defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
kigster authored Apr 20, 2024
1 parent b10077f commit bd8d102
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/models/event.rb
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ class Event < ApplicationRecord
:ensure_prices_set_if_maximum_specified

DEFAULT_ATTRIBUTES = {
adult_ticket_price: 150,
adult_ticket_price: 250,
early_arrival_price: 20,
kid_ticket_price: 50,
kid_ticket_price: 0,
late_departure_price: 20,
max_adult_tickets_per_request: 4,
max_kid_tickets_per_request: 2,
max_adult_tickets_per_request: 10,
max_kid_tickets_per_request: 4,
max_cabins_per_request: 1,
max_cabin_requests: 2,
tickets_require_approval: true,
Expand Down

0 comments on commit bd8d102

Please sign in to comment.