aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/users_controller.rb
blob: f0479d14e07f54d6850378040c7e373c69aff254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# SPDX-FileCopyrightText: 2020 IN COMMON Collective <collective@incommon.cc>
#
# SPDX-License-Identifier: AGPL-3.0-or-later

class UsersController < ApplicationController
  # GET /my/peers
  def index
    @users = current_agent.members
  end

  # GET /my/account
  def show
    @user = current_user
  end
end