Class: Decidim::ProfilesController
Overview
The controller to handle the user’s public profile page.
Instance Method Summary
collapse
Methods included from UserGroups
#enforce_user_groups_enabled
#check_user_block_status, #check_user_not_blocked
#snippets
#disable_http_caching
#skip_store_location?, #store_current_location
register_permissions
enhance_controller, extended, included
Instance Method Details
#activity ⇒ Object
59
60
61
62
63
|
# File 'app/controllers/decidim/profiles_controller.rb', line 59
def activity
@content_cell = "decidim/user_activity"
@title_key = "activity"
render :show
end
|
#badges ⇒ Object
37
38
39
40
41
|
# File 'app/controllers/decidim/profiles_controller.rb', line 37
def badges
@content_cell = "decidim/badges"
@title_key = "badges"
render :show
end
|
#followers ⇒ Object
31
32
33
34
35
|
# File 'app/controllers/decidim/profiles_controller.rb', line 31
def followers
@content_cell = "decidim/followers"
@title_key = "followers"
render :show
end
|
#following ⇒ Object
25
26
27
28
29
|
# File 'app/controllers/decidim/profiles_controller.rb', line 25
def following
@content_cell = "decidim/following"
@title_key = "following"
render :show
end
|
#groups ⇒ Object
43
44
45
46
47
48
49
|
# File 'app/controllers/decidim/profiles_controller.rb', line 43
def groups
enforce_user_groups_enabled
@content_cell = "decidim/groups"
@title_key = "groups"
render :show
end
|
#members ⇒ Object
51
52
53
54
55
56
57
|
# File 'app/controllers/decidim/profiles_controller.rb', line 51
def members
enforce_user_groups_enabled
@content_cell = "decidim/members"
@title_key = "members"
render :show
end
|
#show ⇒ Object
18
19
20
21
22
23
|
# File 'app/controllers/decidim/profiles_controller.rb', line 18
def show
return redirect_to profile_timeline_path(nickname: params[:nickname]) if profile_holder == current_user
return redirect_to profile_members_path if profile_holder.is_a?(Decidim::UserGroup)
redirect_to profile_activity_path(nickname: params[:nickname])
end
|