class AgentsController < ApplicationController def dashboard @agent_missions = current_user.mission_agents end def list @users = User.all end def show @user = User.find_by_id(params[:id]) end end