Commit e219cf7246c6a0495e4507deaffeba11e79f13b8
1 parent
4aa22754
Exists in
master
and in
4 other branches
Annotate!
Showing
10 changed files
with
14 additions
and
7 deletions
Show diff stats
app/assets/javascripts/api.js.coffee
... | ... | @@ -3,12 +3,12 @@ |
3 | 3 | user_path: "/api/:version/users/:id.json" |
4 | 4 | notes_path: "/api/:version/projects/:id/notes.json" |
5 | 5 | |
6 | - # Get 20 (depends on api) recent notes | |
6 | + # Get 20 (depends on api) recent notes | |
7 | 7 | # and sort the ascending from oldest to newest |
8 | 8 | notes: (project_id, callback) -> |
9 | 9 | url = Api.buildUrl(Api.notes_path) |
10 | 10 | url = url.replace(':id', project_id) |
11 | - | |
11 | + | |
12 | 12 | $.ajax( |
13 | 13 | url: url, |
14 | 14 | data: |
... | ... | @@ -37,7 +37,7 @@ |
37 | 37 | # Only active users retrieved |
38 | 38 | users: (query, callback) -> |
39 | 39 | url = Api.buildUrl(Api.users_path) |
40 | - | |
40 | + | |
41 | 41 | $.ajax( |
42 | 42 | url: url |
43 | 43 | data: | ... | ... |
app/models/group.rb
app/models/merge_request.rb
app/models/namespace.rb
app/models/note.rb
app/models/pivotaltracker_service.rb
... | ... | @@ -10,6 +10,9 @@ |
10 | 10 | # created_at :datetime not null |
11 | 11 | # updated_at :datetime not null |
12 | 12 | # active :boolean default(FALSE), not null |
13 | +# project_url :string(255) | |
14 | +# subdomain :string(255) | |
15 | +# room :string(255) | |
13 | 16 | # |
14 | 17 | |
15 | 18 | class PivotaltrackerService < Service | ... | ... |
spec/models/group_spec.rb
spec/models/merge_request_spec.rb
spec/models/namespace_spec.rb