-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.rb
18 lines (14 loc) · 803 Bytes
/
init.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require "redmine"
# Hooks
require "/usr/src/redmine/plugins/user_skills_plugin/lib/user_skills_plugin/hooks/user_profile_hook"
# Controller Patch
require "/usr/src/redmine/plugins/user_skills_plugin/lib/issues_controller_patch.rb"
# Load the controller
require "/usr/src/redmine/plugins/user_skills_plugin/app/controllers/user_skills_controller.rb"
Redmine::Plugin.register :user_skills_plugin do
name "User Skills Plugin"
author "HyperPixelv1"
description "This plugin assigns the tags of the issues assigned to the user to the user's profile as the user's ability when the issue is done. When the buttons that ability tag in the user's profile are clicked, it shows the finished issues assigned to the user for that tag."
version "0.0.1"
author_url "https://github.com/HyperPixelv1"
end