-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Decouple members and users resources #260
Open
enricostano
wants to merge
9
commits into
develop
Choose a base branch
from
feature/decouple-members-and-users
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
3e55bc3
Move membership behavior from User to Member
enricostano ca60947
Add /account resource
enricostano 61ead41
Shows user only to same user and to admin of shared organizations
enricostano 9e8ebb2
UsersController#show specs++
enricostano 09e406c
MembersController #index action
enricostano d1d73af
Add some TODO
enricostano e35e961
Add #index spec for unauthorized
enricostano ac5311f
Move #give_time from user to member
enricostano 5c09629
Remove edit user from member row
enricostano File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
class AccountController < ApplicationController | ||
# GET /account | ||
# | ||
def show | ||
end | ||
|
||
# GET /account/edit | ||
# | ||
def edit | ||
@user = current_user | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
class HomeController < ApplicationController | ||
def index | ||
redirect_to :users if current_user | ||
redirect_to :members if current_user | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<h1> | ||
<%= @user.username %> | ||
<small><%= t ".edit_user" %></small> | ||
</h1> | ||
|
||
<%= render "users/form" %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<div class="panel user-profile"> | ||
<div class="panel-body"> | ||
<h1> | ||
<%= current_user.username %> | ||
<small> | ||
<% if current_user.superadmin? %> | ||
<span class="label label-important"> | ||
<%= t ".superadmin" %> | ||
</span> | ||
<% end %> | ||
</small> | ||
</h1> | ||
<div class="row"> | ||
<div class="col-sm-3 col-xs-5 text-center"> | ||
<a href="https://www.gravatar.com" target="_blank"> | ||
<%= image_tag avatar_url(current_user, 160) %> | ||
</a> | ||
</div> | ||
<div class="col-sm-9 col-xs-7 break-word"> | ||
<%= m current_user.description %> | ||
<ul class="nav nav-pills pull-right"> | ||
<li> | ||
<%= link_to account_edit_path do %> | ||
<%= glyph :pencil %> | ||
<%= t "global.edit" %> | ||
<% end %> | ||
</li> | ||
</ul> | ||
<dl class="dl-horizontal"> | ||
<h3> | ||
<%= t "global.contact_details" %> | ||
</h3> | ||
<% if current_user.email_if_real != "" %> | ||
<dt> | ||
<%= User.human_attribute_name(:email) %> | ||
</dt> | ||
<dd> | ||
<%= current_user.email_if_real %> | ||
</dd> | ||
<% end %> | ||
<% phones = [current_user.phone, current_user.alt_phone].select(&:present?) %> | ||
<% if phones.present? %> | ||
<dt> | ||
<%= t(".phone", count: phones.size) %> | ||
</dt> | ||
<dd> | ||
<%= phones.map(&:to_s).join('—') %> | ||
</dd> | ||
<% end %> | ||
</dl> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<li class="<%= "active" if current_page?(members_path) %>"> | ||
<%= link_to members_path do %> | ||
<%= glyph :user %> | ||
<%= Member.model_name.human.pluralize %> | ||
<% end %> | ||
</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
member.member_uid
?