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
1475cb9a
Commit
1475cb9a
authored
Mar 07, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:gitlabhq/gitlabhq
parents
ed616f23
4538719d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
app/assets/javascripts/blob/edit_blob.js.coffee
app/assets/javascripts/blob/edit_blob.js.coffee
+1
-1
app/assets/javascripts/blob/new_blob.js.coffee
app/assets/javascripts/blob/new_blob.js.coffee
+1
-1
lib/api/helpers.rb
lib/api/helpers.rb
+4
-1
No files found.
app/assets/javascripts/blob/edit_blob.js.coffee
View file @
1475cb9a
...
@@ -15,7 +15,7 @@ class @EditBlob
...
@@ -15,7 +15,7 @@ class @EditBlob
$
(
".js-commit-button"
).
click
->
$
(
".js-commit-button"
).
click
->
$
(
"#file-content"
).
val
editor
.
getValue
()
$
(
"#file-content"
).
val
editor
.
getValue
()
$
(
".file-editor form"
).
submit
()
$
(
".file-editor form"
).
submit
()
return
return
false
editModePanes
=
$
(
".js-edit-mode-pane"
)
editModePanes
=
$
(
".js-edit-mode-pane"
)
editModeLinks
=
$
(
".js-edit-mode a"
)
editModeLinks
=
$
(
".js-edit-mode a"
)
...
...
app/assets/javascripts/blob/new_blob.js.coffee
View file @
1475cb9a
...
@@ -15,7 +15,7 @@ class @NewBlob
...
@@ -15,7 +15,7 @@ class @NewBlob
$
(
".js-commit-button"
).
click
->
$
(
".js-commit-button"
).
click
->
$
(
"#file-content"
).
val
editor
.
getValue
()
$
(
"#file-content"
).
val
editor
.
getValue
()
$
(
".file-editor form"
).
submit
()
$
(
".file-editor form"
).
submit
()
return
return
false
editor
:
->
editor
:
->
return
@
editor
return
@
editor
lib/api/helpers.rb
View file @
1475cb9a
...
@@ -83,7 +83,10 @@ module API
...
@@ -83,7 +83,10 @@ module API
end
end
def
authenticate_by_gitlab_shell_token!
def
authenticate_by_gitlab_shell_token!
unauthorized!
unless
secret_token
==
params
[
'secret_token'
].
try
(
:chomp
)
input
=
params
[
'secret_token'
].
try
(
:chomp
)
unless
Devise
.
secure_compare
(
secret_token
,
input
)
unauthorized!
end
end
end
def
authenticated_as_admin!
def
authenticated_as_admin!
...
...
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