AppMainViewModel

open class AppMainViewModel @Inject constructor(defaultRepository: DefaultRepository, context: Context, settings: Settings) : ViewModel

ViewModel for managing authentication and API interactions.

This ViewModel handles setting authentication credentials and making API calls.

Constructors

Link copied to clipboard
@Inject
constructor(defaultRepository: DefaultRepository, context: Context, settings: Settings)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
open fun addCloseable(closeable: AutoCloseable)
fun addCloseable(key: String, closeable: AutoCloseable)
Link copied to clipboard
fun checkUser()

Checks the user status and creates an API user if necessary.

Link copied to clipboard
Link copied to clipboard
fun setBasicAuth(apiUserId: String, apiKey: String)

Sets the Basic Authentication credentials.