This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
codecombat/app/models/Clan.coffee
Matt Lott 482b66b8a4 Create and list clans
Replace mock data with some real functionality.
2015-04-01 11:56:48 -07:00

7 lines
188 B
CoffeeScript

CocoModel = require './CocoModel'
schema = require 'schemas/models/clan.schema'
module.exports = class Clan extends CocoModel
@className: 'Clan'
@schema: schema
urlRoot: '/db/clan'