]> source.dussan.org Git - redmine.git/commitdiff
fix source indent of lib/redmine/access_keys.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 2 Dec 2020 13:30:49 +0000 (13:30 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 2 Dec 2020 13:30:49 +0000 (13:30 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20535 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/access_keys.rb

index 4db9a552be2599b4465412be64be4199a271f65d..db66c7d842fc7f308bd684299bda694efc20fe00 100644 (file)
 
 module Redmine
   module AccessKeys
-    ACCESSKEYS = {:edit => 'e',
-                  :preview => 'r',
-                  :quick_search => 'f',
-                  :search => '4',
-                  :new_issue => '7',
-                  :previous => 'p',
-                  :next => 'n'
-                 }.freeze unless const_defined?(:ACCESSKEYS)
+    unless const_defined?(:ACCESSKEYS)
+      ACCESSKEYS = {
+        :edit => 'e',
+        :preview => 'r',
+        :quick_search => 'f',
+        :search => '4',
+        :new_issue => '7',
+        :previous => 'p',
+        :next => 'n'
+      }.freeze
+    end
 
     def self.key_for(action)
       ACCESSKEYS[action]