Skip to content
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.

Apys v2.0.0

Compare
Choose a tag to compare
@seijihirao seijihirao released this 23 Sep 23:31
· 47 commits to master since this release

Features

Utils

Now you have to select what utils will be loaded on config, and on what order.

{
    "util": [
         "util1",
         "util2"
    ]
}

i.e.: demo/hello_world

Filters

You can now import filters inside a list, so if one of them doesn't return an error all error will be ignored and the flow will continue.

filters = [
    'filter1',
    ['filter2', filter3]
]

i.e.: demo/user_roles