Skip to content

Commit ac82717

Browse files
committed
Add migration and serializers for Event.website
1 parent 71902db commit ac82717

File tree

7 files changed

+14
-3
lines changed

7 files changed

+14
-3
lines changed

app/controllers/v1/admin/events_controller.rb

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ def creatable_attributes
4747
confirmation_email_subject
4848
confirmation_email_body
4949
confirmation_email_bcc
50+
website
5051
]
5152
end
5253

app/models/event.rb

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
# has_registration_form :boolean
1818
# name :string
1919
# start_date :string
20+
# website :string
2021
# created_at :datetime not null
2122
# updated_at :datetime not null
2223
# country_id :string

app/serializers/v1/admin/event_serializer.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ class EventSerializer < ApplicationSerializer
1414
:ask_company,
1515
:confirmation_email_subject,
1616
:confirmation_email_body,
17-
:confirmation_email_bcc
17+
:confirmation_email_bcc,
18+
:website
1819

1920
belongs_to :country
2021

app/serializers/v1/public/event_serializer.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ class EventSerializer < ApplicationSerializer
1111
:ask_first_name,
1212
:ask_last_name,
1313
:ask_role,
14-
:ask_company
14+
:ask_company,
15+
:website
1516

1617
belongs_to :country
1718
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class AddWebsiteToEvent < ActiveRecord::Migration[6.1]
2+
def change
3+
add_column :events, :website, :string
4+
end
5+
end

db/schema.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
# It's strongly recommended that you check this file into your version control system.
1212

13-
ActiveRecord::Schema.define(version: 2024_04_18_113914) do
13+
ActiveRecord::Schema.define(version: 2024_04_19_091308) do
1414

1515
# These are extensions that must be enabled in order to support this database
1616
enable_extension "pgcrypto"
@@ -275,6 +275,7 @@
275275
t.string "confirmation_email_subject", default: "See you soon at {event_name}!"
276276
t.string "confirmation_email_body", default: "Hello {first_name} {last_name}, We look forward seeing you at {event_name} on {event_date} in {event_location}. Best regards, The Interflux Electronics team"
277277
t.string "confirmation_email_bcc", default: "[email protected], [email protected]"
278+
t.string "website"
278279
end
279280

280281
create_table "features", primary_key: "slug", id: :string, force: :cascade do |t|

test/fixtures/events.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
# has_registration_form :boolean
1818
# name :string
1919
# start_date :string
20+
# website :string
2021
# created_at :datetime not null
2122
# updated_at :datetime not null
2223
# country_id :string

0 commit comments

Comments
 (0)