Class: Decidim::ProfilesController

Inherits:
ApplicationController show all
Includes:
Flaggable, UserGroups
Defined in:
app/controllers/decidim/profiles_controller.rb

Overview

The controller to handle the user’s public profile page.

Instance Method Summary collapse

Methods included from UserGroups

#enforce_user_groups_enabled

Methods included from UserBlockedChecker

#check_user_block_status, #check_user_not_blocked

Methods included from NeedsSnippets

#snippets

Methods included from HttpCachingDisabler

#disable_http_caching

Methods included from HasStoredPath

#skip_store_location?, #store_current_location

Methods included from RegistersPermissions

register_permissions

Methods included from NeedsOrganization

enhance_controller, extended, included

Instance Method Details

#activityObject



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

#badgesObject



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

#followersObject



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

#followingObject



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

#groupsObject



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

#membersObject



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

#showObject



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