fix(android): MeRepository KDoc — actually remove the /api/me/* trap
c74fa41 fixed MeApi.kt but the MeRepository.kt edit failed silently
(stale Read). MeRepository's KDoc still had the wildcard-path
backtick block that closes the doc comment prematurely. Replacing
it now.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -10,11 +10,11 @@ import javax.inject.Inject
|
||||
import javax.inject.Singleton
|
||||
|
||||
/**
|
||||
* Thin facade over `/api/me/*` for the Settings Profile + Password
|
||||
* cards. No Room caching — the Settings card fetches on screen
|
||||
* mount and writes go straight to the server. Network errors
|
||||
* surface to the caller for UI snackbar; no offline-queue path
|
||||
* because changing your own password offline doesn't make sense.
|
||||
* Thin facade over the `/api/me` endpoints for the Settings Profile
|
||||
* and Password cards. No Room caching — the Settings card fetches
|
||||
* on screen mount and writes go straight to the server. Network
|
||||
* errors surface to the caller for UI snackbar; no offline-queue
|
||||
* path because changing your own password offline doesn't make sense.
|
||||
*/
|
||||
@Singleton
|
||||
class MeRepository @Inject constructor(retrofit: Retrofit) {
|
||||
|
||||
Reference in New Issue
Block a user