A decentralized music tracking and discovery platform built on AT Protocol 🎵 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz

fix: standardize API response keys to use snake_case for api_key and shared_secret

+4 -4
+4 -4
apps/api/src/apikeys/app.ts
··· 105 105 id: record.id, 106 106 name: record.name, 107 107 description: record.description, 108 - apiKey: record.apiKey, 109 - sharedSecret: record.sharedSecret, 108 + api_key: record.apiKey, 109 + shared_secret: record.sharedSecret, 110 110 }); 111 111 }); 112 112 ··· 147 147 id: record.id, 148 148 name: record.name, 149 149 description: record.description, 150 - apiKey: record.apiKey, 151 - sharedSecret: record.sharedSecret, 150 + api_key: record.apiKey, 151 + shared_secret: record.sharedSecret, 152 152 }); 153 153 }); 154 154