10 lines
174 B
Ruby
10 lines
174 B
Ruby
|
module ProjectStartImport
|
||
|
def start(project)
|
||
|
if project.import_started? && project.import_jid == self.jid
|
||
|
return true
|
||
|
end
|
||
|
|
||
|
project.import_start
|
||
|
end
|
||
|
end
|