You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create an event resource
The attributes are:
name (:string) – The name of the event.
description (:string) – A short description.
startDate (:utc_datetime) – When the event starts.
endDate (:utc_datetime) – When the event ends.
location (:map) – The venue/location.
virtual_url (:string) - the online meeting link for hybrid or online events
eventStatus (:atom) – The event status (Scheduled, Postponed, etc.).
eventAttendanceMode (:atom) – Whether it is in-person, online, or hybrid.
image_url (:string) – Cover image URL.
The attributes are:
name (:string) – The name of the event.
description (:string) – A short description.
startDate (:utc_datetime) – When the event starts.
endDate (:utc_datetime) – When the event ends.
location (:map) – The venue/location.
virtual_url (:string) - the online meeting link for hybrid or online events
eventStatus (:atom) – The event status (Scheduled, Postponed, etc.).
eventAttendanceMode (:atom) – Whether it is in-person, online, or hybrid.
image_url (:string) – Cover image URL.
relationships:
belongs_to organizer (Accounts.User)
belongs_to organization (Organizations.Organizations)
Generate the default views
mix ash_phoenix.gen.live --domain Kindkaboom.Organizations --resource Kindkaboom.Organizations.Event --resourceplural events
Add has_many to Organization
relationships do
has_many :events, Kindkaboom.Organizations.Events
The text was updated successfully, but these errors were encountered: