Skip to content

Commit 117d64d

Browse files
committed
Add Modules to overrides files, fixes #64
1 parent a767f95 commit 117d64d

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

app/overrides/issues/_form.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@
99
:name => 'add-multiple-projects-to-issue-form',
1010
:insert_after => '.attributes',
1111
:partial => 'issues/select_projects'
12+
module Issues
13+
module Form
14+
end
15+
end

app/overrides/issues/_list.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
:name => 'disable_project_link_if_current_user_cannot_open_it',
44
:insert_after => 'table.list.issues tbody tr',
55
:partial => 'issues/link_to_project'
6+
module Issues
7+
module List
8+
end
9+
end

app/overrides/issues/show.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
:name => 'show-projects-in-issue-description',
44
:insert_after => '.attributes',
55
:partial => 'issues/show_projects'
6+
module Issues
7+
module Show
8+
end
9+
end

0 commit comments

Comments
 (0)