You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a filter that can only get or exclude strings when reading API users
Context
UI adds &UI to the end of all calls
nice to be able to split between API and UI users
Possible Implementation
add include filter, e.g. include_in_url = 'UI' This should default to None. If not None, query = query.filter(APIRequestSQL.url.like(f'%{include_in_url}%')
add exclude filter e.g. exclude_in_url = 'UI. This should default to None.
Detailed Description
Add a filter that can only get or exclude strings when reading API users
Context
Possible Implementation
query = query.filter(APIRequestSQL.url.like(f'%{include_in_url}%')
The text was updated successfully, but these errors were encountered: