Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ gem 'net-smtp', require: false
gem 'tca_client'

# Async jobs
gem 'ice_cube'
gem 'sidekiq'
gem 'sidekiq-cron'
gem 'sidekiq-status'
Expand Down
1 change: 1 addition & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,7 @@ DEPENDENCIES
grape-swagger-rails
hirb
icalendar
ice_cube
json-jwt
listen
minitest
Expand Down
2 changes: 2 additions & 0 deletions app/api/api_root.rb
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ class ApiRoot < Grape::API
mount SidekiqApi
mount LtiApi if Doubtfire::Application.config.lti_enabled
mount TaskPrerequisitesApi
mount CommunicationRulesApi

mount Tii::TurnItInApi
mount Tii::TurnItInHooksApi
Expand Down Expand Up @@ -134,6 +135,7 @@ class ApiRoot < Grape::API
AuthenticationHelpers.add_auth_to SidekiqApi
AuthenticationHelpers.add_auth_to LtiApi if Doubtfire::Application.config.lti_enabled
AuthenticationHelpers.add_auth_to TaskPrerequisitesApi
AuthenticationHelpers.add_auth_to CommunicationRulesApi

AuthenticationHelpers.add_auth_to Tii::TurnItInApi
AuthenticationHelpers.add_auth_to Tii::TiiGroupAttachmentApi
Expand Down
Loading
Loading