Add a getter for the engine providers in the transfer permission service

This commit is contained in:
Convly 2023-02-03 11:14:32 +01:00
parent e5e86a5361
commit 7d20788ff4

View File

@ -30,6 +30,10 @@ const createPermissionService = () => {
return state.engine; return state.engine;
}, },
get providers() {
return state.providers;
},
init() { init() {
state.providers.action = providerFactory(); state.providers.action = providerFactory();
state.providers.condition = providerFactory(); state.providers.condition = providerFactory();