(ctx context.Context)
| 159 | } |
| 160 | |
| 161 | func getInviteToken(ctx context.Context) string { |
| 162 | obj := ctx.Value(inviteTokenKey) |
| 163 | if obj == nil { |
| 164 | return "" |
| 165 | } |
| 166 | |
| 167 | return obj.(string) |
| 168 | } |
| 169 | |
| 170 | // withExternalProviderType adds the provided request ID to the context. |
| 171 | func withExternalProviderType(ctx context.Context, id string) context.Context { |
no test coverage detected
searching dependent graphs…