module servers.modeller.apis.tutorials; @safe: import servers.modeller; private: string myCollectionName = "tutorials"; string myUrl = "/modeller/tutorials"; string myApi = "api/v1/cms/tutorials"; /* public: static this() { serverModeller.data(myApi, new class DSRVApi { this() { super(); this.url(myUrl).pool(myCollectionName).crudMode("list"); }}); serverModeller.data(myApi~"/create", new class DSRVApi { this() { super(); this.url(myUrl).pool(myCollectionName).crudMode("create"); }}); serverModeller.data(myApi~"/view", new class DSRVApi { this() { super(); this.url(myUrl).pool(myCollectionName).crudMode("read"); }}); serverModeller.data(myApi~"/edit", new class DSRVApi { this() { super(); this.url(myUrl).pool(myCollectionName).crudMode("update"); }}); serverModeller.data(myApi~"/delete", new class DSRVApi { this() { super(); this.url(myUrl).pool(myCollectionName).crudMode("delete"); }}); } */