mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-17 00:26:07 +10:00
Make the following changes to deal with new behavior in Rails 4.1.2: * Use nested resources to avoid slashes in arguments to path helpers.
11 lines
408 B
Plaintext
11 lines
408 B
Plaintext
%ul#notes-list.notes.main-notes-list.timeline
|
|
= render "projects/notes/notes"
|
|
.js-notes-busy
|
|
|
|
.js-main-target-form
|
|
- if can? current_user, :write_note, @project
|
|
= render "projects/notes/form"
|
|
|
|
:javascript
|
|
new Notes("#{namespace_project_notes_path(namespace_id: @project.namespace, target_id: @noteable.id, target_type: @noteable.class.name.underscore)}", #{@notes.map(&:id).to_json}, #{Time.now.to_i})
|