(id uint, token, name string, internal bool)
| 118 | } |
| 119 | |
| 120 | func (ab *AppClientBuilder) appWithTokenAndName(id uint, token, name string, internal bool) *MessageBuilder { |
| 121 | ab.newAppWithTokenAndName(id, token, name, internal) |
| 122 | return &MessageBuilder{db: ab.db, appID: id} |
| 123 | } |
| 124 | |
| 125 | // NewAppWithTokenAndName creates an application with a token and name and returns the app. |
| 126 | func (ab *AppClientBuilder) NewAppWithTokenAndName(id uint, token, name string) *model.Application { |
no test coverage detected