1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00

Set name for each generated resource

This commit is contained in:
Folyd 2019-11-26 19:40:29 +08:00 committed by Nikolay Kim
parent f2b3dc5625
commit f43a706364

View file

@ -184,6 +184,7 @@ impl Route {
pub fn generate(&self) -> TokenStream {
let name = &self.name;
let resource_name = name.to_string();
let guard = &self.guard;
let ast = &self.ast;
let path = &self.args.path;
@ -196,8 +197,8 @@ impl Route {
impl actix_web::dev::HttpServiceFactory for #name {
fn register(self, config: &mut actix_web::dev::AppService) {
#ast
let resource = actix_web::Resource::new(#path)
.name(#resource_name)
.guard(actix_web::guard::#guard())
#(.guard(actix_web::guard::fn_guard(#extra_guards)))*
.#resource_type(#name);