Skip to content

Commit 1f0158b

Browse files
committed
Add Modules to overrides files, fixes #64
1 parent 0b22c5b commit 1f0158b

3 files changed

Lines changed: 13 additions & 1 deletion

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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
Deface::Override.new :virtual_path => 'issues/show',
22
:name => 'show-projects-in-issue-description',
33
:insert_after => '.attributes',
4-
:partial => 'issues/show_projects'
4+
:partial => 'issues/show_projects'
5+
module Issues
6+
module Show
7+
end
8+
end

0 commit comments

Comments
 (0)