Skip to content

Ignored path/pathRoute modifications after transformer apply #2362

@Armanio

Description

@Armanio

I need to modify a path in a schema, but the transformation I apply in the function doesn't affect anything:

transformer(a) {
  a.route = '/123';
  a.pathRoute = '/123';
  return a;
},

But this works correctly

transformer(a) {
  delete a.summary
  return a;
},

Is it possible that this is how it is intended?
If this is a bug, feel free to assign it to me, I will fix this behavior. After all, I need it

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions