BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
1867d0d5
Commit
1867d0d5
authored
Jul 06, 2016
by
Patricio Cano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added specs to check for the correct links.
parent
5c4a2bff
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
2 deletions
+33
-2
_abuse_report.html.haml
app/views/admin/abuse_reports/_abuse_report.html.haml
+1
-1
show.html.haml
app/views/users/show.html.haml
+1
-1
admin_abuse_reports_spec.rb
spec/features/admin/admin_abuse_reports_spec.rb
+31
-0
No files found.
app/views/admin/abuse_reports/_abuse_report.html.haml
View file @
1867d0d5
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
%tr
%tr
%td
%td
-
if
user
-
if
user
=
link_to
user
.
name
,
user
=
link_to
user
.
name
,
user
,
id:
'abuser_profile_path'
.light.small
.light.small
Joined
#{
time_ago_with_tooltip
(
user
.
created_at
)
}
Joined
#{
time_ago_with_tooltip
(
user
.
created_at
)
}
-
else
-
else
...
...
app/views/users/show.html.haml
View file @
1867d0d5
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
=
icon
(
'rss'
)
=
icon
(
'rss'
)
-
if
current_user
.
admin?
-
if
current_user
.
admin?
=
link_to
[
:admin
,
@user
],
class:
'btn btn-gray'
,
title:
'View user in admin area'
,
=
link_to
[
:admin
,
@user
],
id:
'admin_user_path'
,
class:
'btn btn-gray'
,
title:
'View user in admin area'
,
data:
{
toggle:
'tooltip'
,
placement:
'bottom'
,
container:
'body'
}
do
data:
{
toggle:
'tooltip'
,
placement:
'bottom'
,
container:
'body'
}
do
=
icon
(
'users'
)
=
icon
(
'users'
)
...
...
spec/features/admin/admin_abuse_reports_spec.rb
0 → 100644
View file @
1867d0d5
require
'spec_helper'
describe
"Admin::AbuseReports"
,
feature:
true
,
js:
true
do
let
(
:user
)
{
create
(
:user
)
}
context
'as an admin'
do
describe
'if a user has been reported for abuse'
do
before
do
admin
=
create
(
:admin
)
create
(
:abuse_report
,
user:
user
)
login_as
admin
end
describe
'in the abuse report view'
do
it
"should present a link to the user's profile"
do
visit
admin_abuse_reports_path
expect
(
page
).
to
have_selector
'#abuser_profile_path'
end
end
describe
'in the profile page of the user'
do
it
'should show a link to the admin view of the user'
do
visit
user_path
(
user
)
expect
(
page
).
to
have_selector
'#admin_user_path'
end
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment