Your conception is similar to the ruby on rails's resource-based routing. For example
resource :posts, only: [:show, :index, :create]
corresponds to the following routing scheme:
GET /posts - Posts.index
GET /posts/:id - Posts.show
POST /posts - Posts.create
So, class-based views can be rewritten/renamed in the rails terms as the Resource-based views, the conception is quite popular, so I think it would be a great deal
Your conception is similar to the ruby on rails's resource-based routing. For example
corresponds to the following routing scheme:
GET /posts-Posts.indexGET /posts/:id-Posts.showPOST /posts-Posts.createSo, class-based views can be rewritten/renamed in the rails terms as the Resource-based views, the conception is quite popular, so I think it would be a great deal