Compare commits
2 Commits
89b184f776
...
77d98f9f71
Author | SHA1 | Date |
---|---|---|
Tocho Tochev | 77d98f9f71 | |
Tocho Tochev | f934e37974 |
|
@ -1,9 +0,0 @@
|
|||
class Api::SchedulesController < Api::ApplicationController
|
||||
include ::CurrentConferenceAssigning
|
||||
include ::PublicApiExposing
|
||||
before_action :require_current_conference!
|
||||
|
||||
def show
|
||||
@halls = Conference.last.halls.includes(:translations, slots: {approved_event: [:participants_with_personal_profiles, :proposition]})
|
||||
end
|
||||
end
|
|
@ -8,11 +8,7 @@ module Management
|
|||
private
|
||||
|
||||
def authorize_user!
|
||||
if params[:conference_id] && params[:conference_id].to_i < Conference.last.id
|
||||
head :forbidden unless current_user.admin? && current_user.owner?
|
||||
else
|
||||
head :forbidden unless current_user.admin?
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -22,7 +22,6 @@ class Event < ActiveRecord::Base
|
|||
|
||||
scope :ranked, -> { where.not(ranked: nil).where.not(votes: nil) }
|
||||
scope :approved, -> { where(propositions: {status: Proposition.statuses[:approved]})}
|
||||
scope :approved_joined, -> { joins(:proposition).merge(Proposition.approved) }
|
||||
|
||||
validates :conference, presence: true
|
||||
validates :title, presence: true, length: {maximum: 65}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
class Slot < ActiveRecord::Base
|
||||
belongs_to :hall
|
||||
belongs_to :event, required: false
|
||||
belongs_to :approved_event, -> { joins(:proposition).approved_joined }, class_name: 'Event', foreign_key: 'event_id'
|
||||
end
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
@halls.each do |hall|
|
||||
json.set! hall.name do
|
||||
json.days do
|
||||
hall.slots.to_a.sort_by(&:starts_at).group_by { |slot| slot.starts_at.to_date }.each do |day, slots|
|
||||
json.set! day do
|
||||
json.array! slots do |slot|
|
||||
next unless slot.approved_event
|
||||
json.starts_at slot.starts_at
|
||||
json.starts_at_human l(slot.starts_at, format: '%a, %H:%M')
|
||||
json.title slot.approved_event.title
|
||||
json.speakers do
|
||||
json.array! slot.approved_event.participants_with_personal_profiles do |participant|
|
||||
json.name participant.name
|
||||
json.email participant.public_email
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
|
@ -32,7 +32,6 @@ Rails.application.routes.draw do
|
|||
resources :event_types, only: :index
|
||||
resources :halls, only: :index
|
||||
resources :slots, only: :index
|
||||
resource :schedule, only: :show
|
||||
resources :volunteers
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
class AddOwnerFieldToUsers < ActiveRecord::Migration[7.1]
|
||||
def change
|
||||
add_column :users, :owner, :boolean, null: false, default: false
|
||||
end
|
||||
end
|
|
@ -11,5 +11,4 @@ User.create(
|
|||
password_confirmation: "123qweASD",
|
||||
confirmed_at: Time.current,
|
||||
admin: true
|
||||
owner: true
|
||||
)
|
||||
|
|
1997
db/structure.sql
1997
db/structure.sql
File diff suppressed because it is too large
Load Diff
|
@ -11,7 +11,6 @@ FactoryBot.define do
|
|||
|
||||
factory :administrator do
|
||||
admin { true }
|
||||
owner { true }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue