()
| 66 | } |
| 67 | |
| 68 | func (connection AeConnection) Sanitize() AeConnection { |
| 69 | connection.AeAppKey.SecretKey = utils.SanitizeString(connection.AeAppKey.SecretKey) |
| 70 | return connection |
| 71 | } |
| 72 | |
| 73 | func (connection *AeConnection) MergeFromRequest(target *AeConnection, body map[string]interface{}) error { |
| 74 | secretKey := target.SecretKey |
no outgoing calls
no test coverage detected