PagerDutyConnection holds GitlabConn plus ID/Name for database storage
| 43 | |
| 44 | // PagerDutyConnection holds GitlabConn plus ID/Name for database storage |
| 45 | type PagerDutyConnection struct { |
| 46 | helper.BaseConnection `mapstructure:",squash"` |
| 47 | PagerDutyConn `mapstructure:",squash"` |
| 48 | } |
| 49 | |
| 50 | func (connection *PagerDutyConnection) MergeFromRequest(target *PagerDutyConnection, body map[string]interface{}) error { |
| 51 | token := target.Token |
nothing calls this directly
no outgoing calls
no test coverage detected