(id uint, token string, internal bool)
| 87 | } |
| 88 | |
| 89 | func (ab *AppClientBuilder) appWithToken(id uint, token string, internal bool) *MessageBuilder { |
| 90 | ab.newAppWithToken(id, token, internal) |
| 91 | return &MessageBuilder{db: ab.db, appID: id} |
| 92 | } |
| 93 | |
| 94 | // NewAppWithToken creates an application with a token and returns the app. |
| 95 | func (ab *AppClientBuilder) NewAppWithToken(id uint, token string) *model.Application { |
no test coverage detected