##// END OF EJS Templates
Do not mass create API keys for existing users....
Do not mass create API keys for existing users. They will be created on the fly if needed, just like for new users. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3221 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2838:ff3d0fe4db01
r3107:edab0f0cbb85
Show More
time_entry_activity_custom_field.rb
23 lines | 896 B | text/x-ruby | RubyLexer
/ app / models / time_entry_activity_custom_field.rb
Eric Davis
Enumerations can now have custom fields defined on them. #4077...
r2831 # redMine - project management software
# Copyright (C) 2006 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
class TimeEntryActivityCustomField < CustomField
def type_name
Eric Davis
Fixed some merge bugs. #4077...
r2838 :enumeration_activities
Eric Davis
Enumerations can now have custom fields defined on them. #4077...
r2831 end
end