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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
d204c8f8
Commit
d204c8f8
authored
Jun 04, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce
parents
28b6cde3
971e57cf
Changes
17
Show whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
87 additions
and
94 deletions
+87
-94
app/assets/stylesheets/generic/typography.scss
app/assets/stylesheets/generic/typography.scss
+7
-0
app/controllers/admin/deploy_keys_controller.rb
app/controllers/admin/deploy_keys_controller.rb
+1
-6
app/controllers/projects/deploy_keys_controller.rb
app/controllers/projects/deploy_keys_controller.rb
+0
-4
app/views/admin/deploy_keys/index.html.haml
app/views/admin/deploy_keys/index.html.haml
+1
-2
app/views/admin/deploy_keys/show.html.haml
app/views/admin/deploy_keys/show.html.haml
+0
-35
app/views/profiles/keys/_key.html.haml
app/views/profiles/keys/_key.html.haml
+1
-2
app/views/profiles/keys/_key_details.html.haml
app/views/profiles/keys/_key_details.html.haml
+1
-1
app/views/projects/deploy_keys/_deploy_key.html.haml
app/views/projects/deploy_keys/_deploy_key.html.haml
+6
-10
app/views/projects/deploy_keys/show.html.haml
app/views/projects/deploy_keys/show.html.haml
+0
-14
config/routes.rb
config/routes.rb
+2
-2
doc/workflow/2fa.png
doc/workflow/2fa.png
+0
-0
doc/workflow/2fa_auth.png
doc/workflow/2fa_auth.png
+0
-0
doc/workflow/README.md
doc/workflow/README.md
+2
-1
doc/workflow/two_factor_authentication.md
doc/workflow/two_factor_authentication.md
+65
-0
features/admin/deploy_keys.feature
features/admin/deploy_keys.feature
+0
-5
features/steps/admin/deploy_keys.rb
features/steps/admin/deploy_keys.rb
+0
-11
spec/routing/project_routing_spec.rb
spec/routing/project_routing_spec.rb
+1
-1
No files found.
app/assets/stylesheets/generic/typography.scss
View file @
d204c8f8
...
...
@@ -23,6 +23,13 @@ pre {
font-family
:
$monospace_font
;
}
code
{
&
.key-fingerprint
{
background
:
$body-bg
;
color
:
$text-color
;
}
}
/**
* Wiki typography
*
...
...
app/controllers/admin/deploy_keys_controller.rb
View file @
d204c8f8
class
Admin::DeployKeysController
<
Admin
::
ApplicationController
before_action
:deploy_keys
,
only:
[
:index
]
before_action
:deploy_key
,
only:
[
:
show
,
:
destroy
]
before_action
:deploy_key
,
only:
[
:destroy
]
def
index
end
def
show
end
def
new
...
...
app/controllers/projects/deploy_keys_controller.rb
View file @
d204c8f8
...
...
@@ -18,10 +18,6 @@ class Projects::DeployKeysController < Projects::ApplicationController
@available_public_keys
-=
@available_project_keys
end
def
show
@key
=
@project
.
deploy_keys
.
find
(
params
[
:id
])
end
def
new
@key
=
@project
.
deploy_keys
.
new
...
...
app/views/admin/deploy_keys/index.html.haml
View file @
d204c8f8
...
...
@@ -19,8 +19,7 @@
=
link_to
admin_deploy_key_path
(
deploy_key
)
do
%strong
=
deploy_key
.
title
%td
%span
(
#{
deploy_key
.
fingerprint
}
)
%code
.key-fingerprint
=
deploy_key
.
fingerprint
%td
%span
.cgray
added
#{
time_ago_with_tooltip
(
deploy_key
.
created_at
)
}
...
...
app/views/admin/deploy_keys/show.html.haml
deleted
100644 → 0
View file @
28b6cde3
-
page_title
@deploy_key
.
title
,
"Deploy Keys"
.row
.col-md-4
.panel.panel-default
.panel-heading
Deploy Key
%ul
.well-list
%li
%span
.light
Title:
%strong
=
@deploy_key
.
title
%li
%span
.light
Created on:
%strong
=
@deploy_key
.
created_at
.
stamp
(
"Aug 21, 2011"
)
.panel.panel-default
.panel-heading
Projects (
#{
@deploy_key
.
deploy_keys_projects
.
count
}
)
-
if
@deploy_key
.
deploy_keys_projects
.
any?
%ul
.well-list
-
@deploy_key
.
projects
.
each
do
|
project
|
%li
%span
%strong
=
link_to
project
.
name_with_namespace
,
[
:admin
,
project
.
namespace
.
becomes
(
Namespace
),
project
]
.pull-right
=
link_to
disable_namespace_project_deploy_key_path
(
project
.
namespace
,
project
,
@deploy_key
),
data:
{
confirm:
"Are you sure?"
},
method: :put
,
class:
"btn-xs btn btn-remove"
,
title:
'Remove deploy key from project'
do
%i
.fa.fa-times.fa-inverse
.col-md-8
%p
%span
.light
Fingerprint:
%strong
=
@deploy_key
.
fingerprint
%pre
.well-pre
=
@deploy_key
.
key
.pull-right
=
link_to
'Remove'
,
admin_deploy_key_path
(
@deploy_key
),
data:
{
confirm:
'Are you sure?'
},
method: :delete
,
class:
"btn btn-remove delete-key"
app/views/profiles/keys/_key.html.haml
View file @
d204c8f8
...
...
@@ -3,8 +3,7 @@
=
link_to
path_to_key
(
key
,
is_admin
)
do
%strong
=
key
.
title
%td
%span
(
#{
key
.
fingerprint
}
)
%code
.key-fingerprint
=
key
.
fingerprint
%td
%span
.cgray
added
#{
time_ago_with_tooltip
(
key
.
created_at
)
}
...
...
app/views/profiles/keys/_key_details.html.haml
View file @
d204c8f8
...
...
@@ -15,7 +15,7 @@
.col-md-8
%p
%span
.light
Fingerprint:
%
strong
=
@key
.
fingerprint
%
code
.key-fingerprint
=
@key
.
fingerprint
%pre
.well-pre
=
@key
.
key
.pull-right
...
...
app/views/projects/deploy_keys/_deploy_key.html.haml
View file @
d204c8f8
...
...
@@ -2,24 +2,20 @@
.pull-right
-
if
@available_keys
.
include?
(
deploy_key
)
=
link_to
enable_namespace_project_deploy_key_path
(
@project
.
namespace
,
@project
,
deploy_key
),
class:
'btn btn-sm'
,
method: :put
do
%i
.fa.fa-plus
=
icon
(
'plus'
)
Enable
-
else
-
if
deploy_key
.
destroyed_when_orphaned?
&&
deploy_key
.
almost_orphaned?
=
link_to
'Remove'
,
disable_namespace_project_deploy_key_path
(
@project
.
namespace
,
@project
,
deploy_key
),
data:
{
confirm:
'You are going to remove deploy key. Are you sure?'
},
method: :put
,
class:
"btn btn-remove delete-key btn-sm pull-right"
-
else
=
link_to
disable_namespace_project_deploy_key_path
(
@project
.
namespace
,
@project
,
deploy_key
),
class:
'btn btn-sm'
,
method: :put
do
%i
.fa.fa-power-off
=
icon
(
'power-off'
)
Disable
-
if
project
=
project_for_deploy_key
(
deploy_key
)
=
link_to
namespace_project_deploy_key_path
(
project
.
namespace
,
project
,
deploy_key
)
do
%i
.fa.fa-key
=
icon
(
'key'
)
%strong
=
deploy_key
.
title
-
else
%i
.fa.fa-key
%strong
=
deploy_key
.
title
%br
%code
.key-fingerprint
=
deploy_key
.
fingerprint
%p
.light.prepend-top-10
-
if
deploy_key
.
public?
...
...
app/views/projects/deploy_keys/show.html.haml
deleted
100644 → 0
View file @
28b6cde3
-
page_title
@key
.
title
,
"Deploy Keys"
%h3
.page-title
Deploy key:
=
@key
.
title
%small
created on
=
@key
.
created_at
.
stamp
(
"Aug 21, 2011"
)
.back-link
=
link_to
namespace_project_deploy_keys_path
(
@project
.
namespace
,
@project
)
do
←
To keys list
%hr
%pre
=
@key
.
key
.pull-right
=
link_to
'Remove'
,
namespace_project_deploy_key_path
(
@project
.
namespace
,
@project
,
@key
),
data:
{
confirm:
'Are you sure?'
},
method: :delete
,
class:
"btn-remove btn delete-key"
config/routes.rb
View file @
d204c8f8
...
...
@@ -165,7 +165,7 @@ Gitlab::Application.routes.draw do
end
end
resources
:deploy_keys
,
only:
[
:index
,
:
show
,
:
new
,
:create
,
:destroy
]
resources
:deploy_keys
,
only:
[
:index
,
:new
,
:create
,
:destroy
]
resources
:hooks
,
only:
[
:index
,
:create
,
:destroy
]
do
get
:test
...
...
@@ -421,7 +421,7 @@ Gitlab::Application.routes.draw do
end
end
resources
:deploy_keys
,
constraints:
{
id:
/\d+/
},
only:
[
:index
,
:
show
,
:
new
,
:create
]
do
resources
:deploy_keys
,
constraints:
{
id:
/\d+/
},
only:
[
:index
,
:new
,
:create
]
do
member
do
put
:enable
put
:disable
...
...
doc/workflow/2fa.png
0 → 100644
View file @
d204c8f8
22.9 KB
doc/workflow/2fa_auth.png
0 → 100644
View file @
d204c8f8
15.2 KB
doc/workflow/README.md
View file @
d204c8f8
...
...
@@ -11,6 +11,7 @@
-
[
Migrating from SVN to GitLab
](
migrating_from_svn.md
)
-
[
Project importing from GitHub to GitLab
](
import_projects_from_github.md
)
-
[
Project importing from GitLab.com to your private GitLab instance
](
import_projects_from_gitlab_com.md
)
-
[
Two-factor Authentication (2FA)
](
two_factor_authentication.md
)
-
[
Protected branches
](
protected_branches.md
)
-
[
Change your time zone
](
timezone.md
)
-
[
Keyboard shortcuts
](
shortcuts.md
)
...
...
doc/workflow/two_factor_authentication.md
0 → 100644
View file @
d204c8f8
# Two-factor Authentication (2FA)
Two-factor Authentication (2FA) provides an additional level of security to your
GitLab account. Once enabled, in addition to supplying your username and
password to login, you'll be prompted for a code generated by an application on
your phone.
By enabling 2FA, the only way someone other than you can log into your account
is to know your username and password
*and*
have access to your phone.
## Enabling 2FA
**In GitLab:**
1.
Log in to your GitLab account.
1.
Go to your
**Profile Settings**
.
1.
Go to
**Account**
.
1.
Click
**Enable Two-factor Authentication**
.
![
Two-factor setup
](
2fa.png
)
**On your phone:**
1.
Install a compatible application. We recommend [Google Authenticator].
1.
In the application, add a new entry in one of two ways:
*
Scan the code with your phone's camera to add the entry automatically.
*
Enter the details provided to add the entry manually.
**In GitLab:**
1.
Enter the six-digit pin number from the entry on your phone into the
**
Pin
code
**
field.
1.
Click
**Submit**
.
If the pin you entered was correct, you'll see a message indicating that
Two-factor Authentication has been enabled, and you'll be presented with a list
of recovery codes.
## Recovery Codes
Should you ever lose access to your phone, you can use one of the ten provided
backup codes to login to your account. We suggest copying or printing them for
storage in a safe place.
**Each code can be used only once**
to log in to your
account.
If you lose the recovery codes or just want to generate new ones, you can do so
from the
**Profile Settings**
>
**Acount**
page where you first enabled 2FA.
## Logging in with 2FA Enabled
Logging in with 2FA enabled is only slightly different than a normal login.
Enter your username and password credentials as you normally would, and you'll
be presented with a second prompt for an authentication code. Enter the pin from
your phone's application or a recovery code to log in.
![
Two-factor authentication on sign in
](
2fa_auth.png
)
## Disabling 2FA
1.
Log in to your GitLab account.
1.
Go to your
**Profile Settings**
.
1.
Go to
**Acount**
.
1.
Click
**Disable Two-factor Authentication**
.
[
Google Authenticator
]:
https://support.google.com/accounts/answer/1066447?hl=en
features/admin/deploy_keys.feature
View file @
d204c8f8
...
...
@@ -8,11 +8,6 @@ Feature: Admin Deploy Keys
When
I visit admin deploy keys page
Then
I should see all public deploy keys
Scenario
:
Deploy Keys show
When
I visit admin deploy keys page
And
I click on first deploy key
Then
I should see deploy key details
Scenario
:
Deploy Keys new
When
I visit admin deploy keys page
And
I click 'New Deploy Key'
...
...
features/steps/admin/deploy_keys.rb
View file @
d204c8f8
...
...
@@ -14,17 +14,6 @@ class Spinach::Features::AdminDeployKeys < Spinach::FeatureSteps
end
end
step
'I click on first deploy key'
do
click_link
DeployKey
.
are_public
.
first
.
title
end
step
'I should see deploy key details'
do
deploy_key
=
DeployKey
.
are_public
.
first
current_path
.
should
==
admin_deploy_key_path
(
deploy_key
)
page
.
should
have_content
(
deploy_key
.
title
)
page
.
should
have_content
(
deploy_key
.
key
)
end
step
'I visit admin deploy key page'
do
visit
admin_deploy_key_path
(
deploy_key
)
end
...
...
spec/routing/project_routing_spec.rb
View file @
d204c8f8
...
...
@@ -172,7 +172,7 @@ end
# DELETE /:project_id/deploy_keys/:id(.:format) deploy_keys#destroy
describe
Projects
::
DeployKeysController
,
'routing'
do
it_behaves_like
'RESTful project resources'
do
let
(
:actions
)
{
[
:index
,
:
show
,
:
new
,
:create
]
}
let
(
:actions
)
{
[
:index
,
:new
,
:create
]
}
let
(
:controller
)
{
'deploy_keys'
}
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