Return the name associated with a token or False if the token is invalid
(self, load)
| 1342 | return token |
| 1343 | |
| 1344 | def get_token(self, load): |
| 1345 | """ |
| 1346 | Return the name associated with a token or False if the token is invalid |
| 1347 | """ |
| 1348 | if "token" not in load: |
| 1349 | return False |
| 1350 | return self.loadauth.get_tok(load["token"]) |
| 1351 | |
| 1352 | def publish(self, load): |
| 1353 | """ |