Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
1af2aeff
Commit
1af2aeff
authored
Apr 18, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor usability improvements
parent
a769662f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
13 deletions
+14
-13
app/views/admin/groups/edit.html.haml
app/views/admin/groups/edit.html.haml
+1
-1
app/views/admin/groups/new.html.haml
app/views/admin/groups/new.html.haml
+1
-1
app/views/admin/groups/show.html.haml
app/views/admin/groups/show.html.haml
+2
-2
app/views/admin/hooks/index.html.haml
app/views/admin/hooks/index.html.haml
+1
-1
app/views/admin/teams/new.html.haml
app/views/admin/teams/new.html.haml
+1
-1
app/views/admin/users/_form.html.haml
app/views/admin/users/_form.html.haml
+2
-1
spec/features/admin/admin_users_spec.rb
spec/features/admin/admin_users_spec.rb
+6
-6
No files found.
app/views/admin/groups/edit.html.haml
View file @
1af2aeff
...
...
@@ -27,5 +27,5 @@
%li
It will change the git path to repositories under this group.
.form-actions
=
f
.
submit
'
Edit group'
,
class:
"btn btn-remove
"
=
f
.
submit
'
Save changes'
,
class:
"btn btn-primary
"
=
link_to
'Cancel'
,
admin_groups_path
,
class:
"btn btn-cancel"
app/views/admin/groups/new.html.haml
View file @
1af2aeff
...
...
@@ -15,7 +15,7 @@
=
f
.
text_area
:description
,
maxlength:
250
,
class:
"xxlarge js-gfm-input"
,
rows:
4
.form-actions
=
f
.
submit
'Create group'
,
class:
"btn btn-
primary
"
=
f
.
submit
'Create group'
,
class:
"btn btn-
create
"
%hr
.padded
...
...
app/views/admin/groups/show.html.haml
View file @
1af2aeff
...
...
@@ -94,7 +94,7 @@
%td
=
select_tag
:project_access
,
options_for_select
(
Project
.
access_options
),
{
class:
"project-access-select chosen span3"
}
%tr
%td
=
submit_tag
'Add user to projects in group'
,
class:
"btn btn-
primary
"
%td
=
submit_tag
'Add user to projects in group'
,
class:
"btn btn-
create
"
%td
Read more about project permissions
%strong
=
link_to
"here"
,
help_permissions_path
,
class:
"vlink"
...
...
@@ -116,7 +116,7 @@
.input
=
select_tag
:project_ids
,
options_from_collection_for_select
(
@projects
,
:id
,
:name_with_namespace
),
multiple:
true
,
data:
{
placeholder:
'Select projects'
},
class:
'chosen span5'
.form-actions
=
submit_tag
'
Add'
,
class:
"btn btn-primary
"
=
submit_tag
'
Move projects'
,
class:
"btn btn-create
"
:javascript
$
(
function
(){
...
...
app/views/admin/hooks/index.html.haml
View file @
1af2aeff
...
...
@@ -15,7 +15,7 @@
.input
=
f
.
text_field
:url
,
class:
"text_field xxlarge"
=
f
.
submit
"Add System Hook"
,
class:
"btn btn-
primary
"
=
f
.
submit
"Add System Hook"
,
class:
"btn btn-
create
"
%hr
-
if
@hooks
.
any?
...
...
app/views/admin/teams/new.html.haml
View file @
1af2aeff
...
...
@@ -16,7 +16,7 @@
=
f
.
text_area
:description
,
maxlength:
250
,
class:
"xxlarge js-gfm-input"
,
rows:
4
.form-actions
=
f
.
submit
'Create team'
,
class:
"btn btn-
primary
"
=
f
.
submit
'Create team'
,
class:
"btn btn-
create
"
%hr
.padded
...
...
app/views/admin/users/_form.html.haml
View file @
1af2aeff
...
...
@@ -80,8 +80,9 @@
.input
=
f
.
text_field
:twitter
.actions
=
f
.
submit
'Save'
,
class:
"btn btn-save"
-
if
@admin_user
.
new_record?
=
f
.
submit
'Create user'
,
class:
"btn btn-create"
=
link_to
'Cancel'
,
admin_users_path
,
class:
"btn btn-cancel"
-
else
=
f
.
submit
'Save changes'
,
class:
"btn btn-save"
=
link_to
'Cancel'
,
admin_user_path
(
@admin_user
),
class:
"btn btn-cancel"
spec/features/admin/admin_users_spec.rb
View file @
1af2aeff
...
...
@@ -30,11 +30,11 @@ describe "Admin::Users" do
end
it
"should create new user"
do
expect
{
click_button
"
Save
"
}.
to
change
{
User
.
count
}.
by
(
1
)
expect
{
click_button
"
Create user
"
}.
to
change
{
User
.
count
}.
by
(
1
)
end
it
"should create user with valid data"
do
click_button
"
Save
"
click_button
"
Create user
"
user
=
User
.
last
user
.
name
.
should
==
"Big Bang"
user
.
email
.
should
==
"bigbang@mail.com"
...
...
@@ -44,14 +44,14 @@ describe "Admin::Users" do
Notify
.
should_receive
(
:new_user_email
)
User
.
observers
.
enable
:user_observer
do
click_button
"
Save
"
click_button
"
Create user
"
end
end
it
"should send valid email to user with email & password"
do
Gitlab
.
config
.
gitlab
.
stub
(
:signup_enabled
).
and_return
(
false
)
User
.
observers
.
enable
:user_observer
do
click_button
"
Save
"
click_button
"
Create user
"
user
=
User
.
last
email
=
ActionMailer
::
Base
.
deliveries
.
last
email
.
subject
.
should
have_content
(
"Account was created"
)
...
...
@@ -63,7 +63,7 @@ describe "Admin::Users" do
it
"should send valid email to user with email without password when signup is enabled"
do
Gitlab
.
config
.
gitlab
.
stub
(
:signup_enabled
).
and_return
(
true
)
User
.
observers
.
enable
:user_observer
do
click_button
"
Save
"
click_button
"
Create user
"
user
=
User
.
last
email
=
ActionMailer
::
Base
.
deliveries
.
last
email
.
subject
.
should
have_content
(
"Account was created"
)
...
...
@@ -102,7 +102,7 @@ describe "Admin::Users" do
fill_in
"user_name"
,
with:
"Big Bang"
fill_in
"user_email"
,
with:
"bigbang@mail.com"
check
"user_admin"
click_button
"Save"
click_button
"Save
changes
"
end
it
"should show page with new data"
do
...
...
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