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
e219cf72
Commit
e219cf72
authored
Oct 01, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Annotate!
parent
4aa22754
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
14 additions
and
7 deletions
+14
-7
api.js.coffee
app/assets/javascripts/api.js.coffee
+3
-3
group.rb
app/models/group.rb
+1
-1
merge_request.rb
app/models/merge_request.rb
+1
-0
namespace.rb
app/models/namespace.rb
+1
-1
note.rb
app/models/note.rb
+1
-0
pivotaltracker_service.rb
app/models/pivotaltracker_service.rb
+3
-0
group_spec.rb
spec/models/group_spec.rb
+1
-1
merge_request_spec.rb
spec/models/merge_request_spec.rb
+1
-0
namespace_spec.rb
spec/models/namespace_spec.rb
+1
-1
note_spec.rb
spec/models/note_spec.rb
+1
-0
No files found.
app/assets/javascripts/api.js.coffee
View file @
e219cf72
...
...
@@ -3,12 +3,12 @@
user_path
:
"/api/:version/users/:id.json"
notes_path
:
"/api/:version/projects/:id/notes.json"
# Get 20 (depends on api) recent notes
# Get 20 (depends on api) recent notes
# and sort the ascending from oldest to newest
notes
:
(
project_id
,
callback
)
->
url
=
Api
.
buildUrl
(
Api
.
notes_path
)
url
=
url
.
replace
(
':id'
,
project_id
)
$
.
ajax
(
url
:
url
,
data
:
...
...
@@ -37,7 +37,7 @@
# Only active users retrieved
users
:
(
query
,
callback
)
->
url
=
Api
.
buildUrl
(
Api
.
users_path
)
$
.
ajax
(
url
:
url
data
:
...
...
app/models/group.rb
View file @
e219cf72
...
...
@@ -5,7 +5,7 @@
# id :integer not null, primary key
# name :string(255) not null
# path :string(255) not null
# owner_id :integer
not null
# owner_id :integer
# created_at :datetime not null
# updated_at :datetime not null
# type :string(255)
...
...
app/models/merge_request.rb
View file @
e219cf72
...
...
@@ -18,6 +18,7 @@
# merge_status :string(255)
# target_project_id :integer not null
# iid :integer
# description :text
#
require
Rails
.
root
.
join
(
"app/models/commit"
)
...
...
app/models/namespace.rb
View file @
e219cf72
...
...
@@ -5,7 +5,7 @@
# id :integer not null, primary key
# name :string(255) not null
# path :string(255) not null
# owner_id :integer
not null
# owner_id :integer
# created_at :datetime not null
# updated_at :datetime not null
# type :string(255)
...
...
app/models/note.rb
View file @
e219cf72
...
...
@@ -14,6 +14,7 @@
# commit_id :string(255)
# noteable_id :integer
# st_diff :text
# system :boolean default(FALSE), not null
#
require
'carrierwave/orm/activerecord'
...
...
app/models/pivotaltracker_service.rb
View file @
e219cf72
...
...
@@ -10,6 +10,9 @@
# created_at :datetime not null
# updated_at :datetime not null
# active :boolean default(FALSE), not null
# project_url :string(255)
# subdomain :string(255)
# room :string(255)
#
class
PivotaltrackerService
<
Service
...
...
spec/models/group_spec.rb
View file @
e219cf72
...
...
@@ -5,7 +5,7 @@
# id :integer not null, primary key
# name :string(255) not null
# path :string(255) not null
# owner_id :integer
not null
# owner_id :integer
# created_at :datetime not null
# updated_at :datetime not null
# type :string(255)
...
...
spec/models/merge_request_spec.rb
View file @
e219cf72
...
...
@@ -18,6 +18,7 @@
# merge_status :string(255)
# target_project_id :integer not null
# iid :integer
# description :text
#
require
'spec_helper'
...
...
spec/models/namespace_spec.rb
View file @
e219cf72
...
...
@@ -5,7 +5,7 @@
# id :integer not null, primary key
# name :string(255) not null
# path :string(255) not null
# owner_id :integer
not null
# owner_id :integer
# created_at :datetime not null
# updated_at :datetime not null
# type :string(255)
...
...
spec/models/note_spec.rb
View file @
e219cf72
...
...
@@ -14,6 +14,7 @@
# commit_id :string(255)
# noteable_id :integer
# st_diff :text
# system :boolean default(FALSE), not null
#
require
'spec_helper'
...
...
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