-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from evolvingweb/redmine-5-compatibility
Redmine 5 compatibility
- Loading branch information
Showing
4 changed files
with
39 additions
and
47 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
36 changes: 32 additions & 4 deletions
36
app/views/hooks/redmine_mentions_suggestions/_edit_mentionable.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
require_dependency 'redmine_mentions_suggestions' | ||
|
||
Rails.configuration.to_prepare do | ||
require_dependency 'redmine_mentions_suggestions' | ||
end | ||
Redmine::Plugin.register :redmine_mentions_suggestions do | ||
name 'Redmine Mentions Suggestions plugin' | ||
author 'Evolving Web' | ||
description 'Suggest assignee based on note text.' | ||
version '0.0.1' | ||
version '0.0.2' | ||
url 'https://github.com/evolvingweb/redmine_mentions_suggestions' | ||
author_url 'https://evolvingweb.ca' | ||
end | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
Rails.configuration.to_prepare do | ||
|
||
IssuesController.send :helper, IssuesControllerHelper | ||
require_dependency 'redmine_mentions_suggestions/hooks' | ||
end | ||
module RedmineMentionsSuggestions | ||
end |