Kercode/tutti_gruppi

View on GitHub
app/controllers/admin/dashboard_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class Admin::DashboardController < ApplicationController
  before_action :authenticate_authentication!

  def home; end

  def index
    @authentications = Authentication.page(params[:page]).per(10).order(:userable_type)
  end

  def show
    @authentication = Authentication.find(params[:id])
    @orders = Order.where(authentication_id: params[:id]).page(params[:page]).per(4)
    @groupment = GroupmentAuthentication.where(authentication_id: params[:id])
  end

  def edit
    @authentication = Authentication.find(params[:id])
  end
end