summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2019-10-28 14:02:25 +0000
committerGo MAEDA <maeda@farend.jp>2019-10-28 14:02:25 +0000
commit8a2e4aa247f2a02537eb990ed8f32dd9a6f21e56 (patch)
treecf95e9e827101ab61b182abd9e26838cb8490631
parent81a2e5338dc18d5573da592994c000ebc8703aad (diff)
downloadredmine-8a2e4aa247f2a02537eb990ed8f32dd9a6f21e56.tar.gz
redmine-8a2e4aa247f2a02537eb990ed8f32dd9a6f21e56.zip
Add permission to import time entries (#32196, #28234).
Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@18878 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/models/time_entry_import.rb2
-rw-r--r--app/views/timelog/index.html.erb2
-rw-r--r--lib/redmine.rb1
-rw-r--r--test/fixtures/roles.yml2
4 files changed, 4 insertions, 3 deletions
diff --git a/app/models/time_entry_import.rb b/app/models/time_entry_import.rb
index 125eee093..66b762f74 100644
--- a/app/models/time_entry_import.rb
+++ b/app/models/time_entry_import.rb
@@ -23,7 +23,7 @@ class TimeEntryImport < Import
end
def self.authorized?(user)
- user.allowed_to?(:log_time, nil, :global => true)
+ user.allowed_to?(:import_time_entries, nil, :global => true)
end
# Returns the objects that were imported
diff --git a/app/views/timelog/index.html.erb b/app/views/timelog/index.html.erb
index 2de121806..e33855cd8 100644
--- a/app/views/timelog/index.html.erb
+++ b/app/views/timelog/index.html.erb
@@ -6,7 +6,7 @@
{:controller => 'projects', :action => 'settings', :id => @project, :tab => 'activities'},
:class => 'icon icon-settings' if User.current.allowed_to?(:manage_project_activities, @project) %>
<%= actions_dropdown do %>
- <% if User.current.allowed_to?(:log_time, @project, :global => true) %>
+ <% if User.current.allowed_to?(:import_time_entries, @project, :global => true) %>
<%= link_to l(:button_import), new_time_entries_import_path %>
<% end %>
<% end %>
diff --git a/lib/redmine.rb b/lib/redmine.rb
index f1d5c85c5..31a62c0a8 100644
--- a/lib/redmine.rb
+++ b/lib/redmine.rb
@@ -132,6 +132,7 @@ Redmine::AccessControl.map do |map|
map.permission :edit_own_time_entries, {:timelog => [:edit, :update, :destroy,:bulk_edit, :bulk_update]}, :require => :loggedin
map.permission :manage_project_activities, {:projects => :settings, :project_enumerations => [:update, :destroy]}, :require => :member
map.permission :log_time_for_other_users, :require => :member
+ map.permission :import_time_entries, {}
end
map.project_module :news do |map|
diff --git a/test/fixtures/roles.yml b/test/fixtures/roles.yml
index 62da630c7..13433874e 100644
--- a/test/fixtures/roles.yml
+++ b/test/fixtures/roles.yml
@@ -36,6 +36,7 @@ roles_001:
- :view_time_entries
- :edit_time_entries
- :delete_time_entries
+ - :import_time_entries
- :view_news
- :manage_news
- :comment_news
@@ -215,4 +216,3 @@ roles_005:
- :view_changesets
position: 1
-