Main Avalanche Network server application. Built with Ruby on Rails.

agents_controller.rb 228B

    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