16 lines
324 B
Ruby
16 lines
324 B
Ruby
|
|
module Connectors
|
||
|
|
class ProjectTemplates < Base
|
||
|
|
include Helpers::InsertCommand,
|
||
|
|
Helpers::ShowCommand,
|
||
|
|
Helpers::ListCommand,
|
||
|
|
Helpers::DeleteCommand,
|
||
|
|
Helpers::UpdateCommand
|
||
|
|
|
||
|
|
|
||
|
|
def initialize(db)
|
||
|
|
@collection = db.collection('project_templates')
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|