* Added SortHelper to RatesController * Init and updating the sorting (pre 0.8 sort_update) * RatesController#index will only render the layout on non-xhr requests * Changed Rate.history_for_user to take an order clause * Added rate_sort_header_tag and rate_sort_link to the SortHelper in order to get the correct parameters for sorting Rates * Added rate_sort_header_tags to the Rate lists #1915
16 lines
588 B
Ruby
16 lines
588 B
Ruby
require 'redmine'
|
|
|
|
require 'rate_users_helper_patch'
|
|
require 'rate_sort_helper_patch'
|
|
|
|
Redmine::Plugin.register :redmine_rate do
|
|
name 'Rate Plugin'
|
|
author 'Eric Davis'
|
|
url 'https://projects.littlestreamsoftware.com/projects/show/redmine-rate'
|
|
author_url 'http://www.littlestreamsoftware.com'
|
|
description "The Rate plugin provides an API that can be used to find the rate for a Member of a Project at a specific date. It also stores historical rate data so calculations will remain correct in the future."
|
|
version '0.1.0'
|
|
|
|
requires_redmine :version_or_higher => '0.8.0'
|
|
end
|