blob: 98e5285240d8fba74d0259ece785e0a85236ab83 [file] [log] [blame]
#--######################################################################
# Copyright (c) 2006 Logica
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#
# Onno van der Straaten:: initial implementation
#++######################################################################
# {Copyright (c) 2006 Logica}[link:files/COPYRIGHT.html]
class AdminMessage < DaText
def self.text(id)
msg = AdminMessage.find_by_guid(id)
if msg
msg.text
else
nil
end
end
end