fiedl/your_platform

View on GitHub
app/controllers/officer_history_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class OfficerHistoryController < ApplicationController

  expose :group
  expose :memberships, -> { group.memberships.with_past.order(valid_from: :desc) }

  def index
    authorize! :read, group

  end

end