Hi, is there a way to use this decorator with more than one group? For example if i need function X to be use with groups A and B:
@auth.requires_membership('A', 'B') def X(): ... That doesn't work. How can I do that? Thanks
Hi, is there a way to use this decorator with more than one group? For example if i need function X to be use with groups A and B:
@auth.requires_membership('A', 'B') def X(): ... That doesn't work. How can I do that? Thanks