module servers.modeller.data.pages; @safe: import servers.modeller; private: string myCollectionName = "pages"; string myUrl = "/modeller/pages"; string myApi = "api/v1/cms/pages"; /* 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"); }}); } */