mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
46 lines
968 B
Ruby
46 lines
968 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class CalendarsController < ApplicationController
|
|
prepend_before_action :authenticate_and_authorize!
|
|
|
|
def init
|
|
assets = {}
|
|
record_ids = []
|
|
Calendar.reorder(:name, :created_at).each do |calendar|
|
|
record_ids.push calendar.id
|
|
assets = calendar.assets(assets)
|
|
end
|
|
|
|
ical_feeds = Calendar.ical_feeds
|
|
timezones = Calendar.timezones
|
|
render json: { record_ids:, ical_feeds:, timezones:, assets: }, status: :ok
|
|
end
|
|
|
|
def index
|
|
model_index_render(Calendar, params)
|
|
end
|
|
|
|
def show
|
|
model_show_render(Calendar, params)
|
|
end
|
|
|
|
def create
|
|
model_create_render(Calendar, params)
|
|
end
|
|
|
|
def update
|
|
model_update_render(Calendar, params)
|
|
end
|
|
|
|
def destroy
|
|
model_references_check(Calendar, params)
|
|
model_destroy_render(Calendar, params)
|
|
end
|
|
|
|
def timezones
|
|
render json: {
|
|
timezones: Calendar.timezones
|
|
}
|
|
end
|
|
|
|
end
|