magicAuthToken implements AuthToken for magic tokens belonging to a project.
| 158 | |
| 159 | // magicAuthToken implements AuthToken for magic tokens belonging to a project. |
| 160 | type magicAuthToken struct { |
| 161 | model *database.MagicAuthToken |
| 162 | token *authtoken.Token |
| 163 | } |
| 164 | |
| 165 | func (t *magicAuthToken) Token() *authtoken.Token { |
| 166 | return t.token |
nothing calls this directly
no outgoing calls
no test coverage detected