codebat-hasan
Results
1
comments of
codebat-hasan
``` # Create a custom view to authenticate the user AuthRemoteUserView=BaseSecurityManager.authremoteuserview class CustomAuthUserView(AuthRemoteUserView): @expose('/login/') def login(self): token = request.args.get('token') next = request.args.get('next') sm = self.appbuilder.sm session = sm.get_session user =...