Commit fbc8b2c2 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'master' of github.com:gitlabhq/gitlabhq

parents 5f76a749 ef0876a8
...@@ -40,7 +40,7 @@ module TreeHelper ...@@ -40,7 +40,7 @@ module TreeHelper
# Returns boolean # Returns boolean
def markup?(filename) def markup?(filename)
filename.downcase.end_with?(*%w(.textile .rdoc .org .creole filename.downcase.end_with?(*%w(.textile .rdoc .org .creole
.mediawiki .rst .asciidoc .pod)) .mediawiki .rst .adoc .asciidoc .pod))
end end
def gitlab_markdown?(filename) def gitlab_markdown?(filename)
......
...@@ -249,7 +249,7 @@ class User < ActiveRecord::Base ...@@ -249,7 +249,7 @@ class User < ActiveRecord::Base
def namespace_uniq def namespace_uniq
namespace_name = self.username namespace_name = self.username
if Namespace.find_by(path: namespace_name) if Namespace.find_by(path: namespace_name)
self.errors.add :username, "already exist" self.errors.add :username, "already exists"
end end
end end
......
All methods require admin authorization. All methods require admin authorization.
The url endpoint of the system hooks can be configured in [the admin area under hooks](/admin/hooks). The url endpoint of the system hooks can be configured in [the admin area under hooks](/admin/hooks).
## List system hooks ## List system hooks
Get list of system hooks Get list of system hooks
``` ```
GET /hooks GET /hooks
``` ```
Parameters: Parameters:
+ **none** + **none**
```json ```json
[ [
{ {
"id":3, "id":3,
"url":"http://example.com/hook", "url":"http://example.com/hook",
"created_at":"2013-10-02T10:15:31Z" "created_at":"2013-10-02T10:15:31Z"
} }
] ]
``` ```
## Add new system hook hook ## Add new system hook hook
``` ```
POST /hooks POST /hooks
``` ```
Parameters: Parameters:
+ `url` (required) - The hook URL + `url` (required) - The hook URL
## Test system hook ## Test system hook
``` ```
GET /hooks/:id GET /hooks/:id
``` ```
Parameters: Parameters:
+ `id` (required) - The ID of hook + `id` (required) - The ID of hook
```json ```json
{ {
"event_name":"project_create", "event_name":"project_create",
"name":"Ruby", "name":"Ruby",
"path":"ruby", "path":"ruby",
"project_id":1, "project_id":1,
"owner_name":"Someone", "owner_name":"Someone",
"owner_email":"example@gitlabhq.com" "owner_email":"example@gitlabhq.com"
} }
``` ```
## Delete system hook ## Delete system hook
Deletes a system hook. This is an idempotent API function and returns `200 Ok` even if the hook Deletes a system hook. This is an idempotent API function and returns `200 Ok` even if the hook
is not available. If the hook is deleted it is also returned as JSON. is not available. If the hook is deleted it is also returned as JSON.
``` ```
DELETE /hooks/:id DELETE /hooks/:id
``` ```
Parameters: Parameters:
+ `id` (required) - The ID of hook + `id` (required) - The ID of hook
...@@ -18,7 +18,7 @@ New releases are generally around the same time as GitLab CE releases with excep ...@@ -18,7 +18,7 @@ New releases are generally around the same time as GitLab CE releases with excep
# System Layout # System Layout
When referring to ~git in the picures it means the home directory of the git user which is typically /home/git. When referring to ~git in the pictures it means the home directory of the git user which is typically /home/git.
GitLab is primarily installed within the `/home/git` user home directory as `git` user. GitLab is primarily installed within the `/home/git` user home directory as `git` user.
Within the home directory is where the gitlabhq server software resides as well as the repositories (though the repository location is configurable). Within the home directory is where the gitlabhq server software resides as well as the repositories (though the repository location is configurable).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment