2015-06-30 16:06:48 +03:00
|
|
|
module Connectors
|
|
|
|
|
class ProjectTemplates < Base
|
|
|
|
|
include Helpers::InsertCommand,
|
|
|
|
|
Helpers::ShowCommand,
|
|
|
|
|
Helpers::ListCommand,
|
|
|
|
|
Helpers::DeleteCommand,
|
|
|
|
|
Helpers::UpdateCommand
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def initialize(db)
|
2015-09-21 15:54:33 +03:00
|
|
|
super(db)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def collection_name
|
|
|
|
|
'project_templates'
|
2015-06-30 16:06:48 +03:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|