We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bedceea commit 0bdae4cCopy full SHA for 0bdae4c
app/controllers/organizations_controller.rb
@@ -45,6 +45,8 @@ def destroy
45
redirect_to organizations_path, notice: "deleted"
46
end
47
48
+ # Transfer time to the current organization
49
+ #
50
def give_time
51
@destination = @organization.account.id
52
@source = find_transfer_source
app/controllers/users_controller.rb
@@ -15,6 +15,8 @@ def scoped_users
15
@organization.users
16
17
18
+ # GET /organizations/:id/members
19
20
def index
21
@users = scoped_users
22
@memberships = @organization.members.
@@ -24,6 +26,8 @@ def index
24
26
25
27
28
29
+ # GET /members/:user_id
30
31
def show
32
@user = find_user
33
authorize @user
0 commit comments