Sha256: 14be20b3c7b4637501e8c77804eba4de3f42bcb326a0cb61c36f8efa5ec84ff4

Contents?: true

Size: 397 Bytes

Versions: 13

Compression:

Stored size: 397 Bytes

Contents

# frozen_string_literal: true
require_dependency "think_feel_do_engine/application_controller"

module ThinkFeelDoEngine
  # Enables Coaches to interact with patients via groups
  # by sending messages and composing individual emails.
  class CoachDashboardController < ApplicationController
    before_action :authenticate_user!

    def index
      authorize! :create, Message
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
think_feel_do_engine-3.22.9 app/controllers/think_feel_do_engine/coach_dashboard_controller.rb
think_feel_do_engine-3.22.8 app/controllers/think_feel_do_engine/coach_dashboard_controller.rb
think_feel_do_engine-3.22.7 app/controllers/think_feel_do_engine/coach_dashboard_controller.rb
think_feel_do_engine-3.22.6 app/controllers/think_feel_do_engine/coach_dashboard_controller.rb
think_feel_do_engine-3.22.5 app/controllers/think_feel_do_engine/coach_dashboard_controller.rb
think_feel_do_engine-3.22.4 app/controllers/think_feel_do_engine/coach_dashboard_controller.rb
think_feel_do_engine-3.22.2 app/controllers/think_feel_do_engine/coach_dashboard_controller.rb
think_feel_do_engine-3.22.1 app/controllers/think_feel_do_engine/coach_dashboard_controller.rb
think_feel_do_engine-3.22.0 app/controllers/think_feel_do_engine/coach_dashboard_controller.rb
think_feel_do_engine-3.21.2 app/controllers/think_feel_do_engine/coach_dashboard_controller.rb
think_feel_do_engine-3.21.1 app/controllers/think_feel_do_engine/coach_dashboard_controller.rb
think_feel_do_engine-3.21.0 app/controllers/think_feel_do_engine/coach_dashboard_controller.rb
think_feel_do_engine-3.20.1 app/controllers/think_feel_do_engine/coach_dashboard_controller.rb