mirror of
https://github.com/bitwarden/android.git
synced 2025-03-15 18:58:59 +03:00
Clean up broken documentation links (#1116)
This commit is contained in:
parent
43a7e2a5fd
commit
af9e3d36a4
7 changed files with 7 additions and 4 deletions
|
@ -1,10 +1,11 @@
|
|||
package com.x8bit.bitwarden.data.auth.repository.model
|
||||
|
||||
import com.x8bit.bitwarden.data.vault.datasource.network.model.SyncResponseJson
|
||||
import kotlinx.serialization.SerialName
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
/**
|
||||
* The policy information decoded from the [data] parameter of the [SyncResponseJson.Policy] object.
|
||||
* The policy information decoded from the `data` parameter of the [SyncResponseJson.Policy] object.
|
||||
*/
|
||||
@Serializable
|
||||
sealed class PolicyInformation {
|
||||
|
|
|
@ -37,7 +37,7 @@ fun generateUriForCaptcha(captchaId: String): Uri {
|
|||
/**
|
||||
* Retrieves a [CaptchaCallbackTokenResult] from an Intent. There are three possible cases.
|
||||
*
|
||||
* - [null]: Intent is not a captcha callback, or data is null.
|
||||
* - `null`: Intent is not a captcha callback, or data is null.
|
||||
*
|
||||
* - [CaptchaCallbackTokenResult.MissingToken]:
|
||||
* Intent is the captcha callback, but its missing a token value.
|
||||
|
|
|
@ -7,7 +7,7 @@ private const val DUO_HOST: String = "duo-callback"
|
|||
/**
|
||||
* Retrieves a [DuoCallbackTokenResult] from an Intent. There are three possible cases.
|
||||
*
|
||||
* - [null]: Intent is not a Duo callback, or data is null.
|
||||
* - `null`: Intent is not a Duo callback, or data is null.
|
||||
*
|
||||
* - [DuoCallbackTokenResult.MissingToken]: Intent is the Duo callback, but it's missing the code or
|
||||
* state value.
|
||||
|
|
|
@ -25,6 +25,7 @@ import androidx.compose.ui.unit.dp
|
|||
import androidx.compose.ui.window.Dialog
|
||||
import com.x8bit.bitwarden.R
|
||||
import com.x8bit.bitwarden.ui.platform.components.button.BitwardenTextButton
|
||||
import com.x8bit.bitwarden.ui.platform.components.dialog.row.BitwardenSelectionRow
|
||||
import com.x8bit.bitwarden.ui.platform.components.util.maxDialogHeight
|
||||
|
||||
/**
|
||||
|
|
|
@ -11,6 +11,7 @@ import androidx.compose.runtime.Composable
|
|||
import androidx.compose.runtime.remember
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.unit.dp
|
||||
import com.x8bit.bitwarden.ui.platform.components.dialog.BitwardenSelectionDialog
|
||||
|
||||
/**
|
||||
* A simple clickable row for use within a [BitwardenSelectionDialog] as an alternative to a
|
||||
|
|
|
@ -4,6 +4,7 @@ import androidx.compose.material3.MaterialTheme
|
|||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.ReadOnlyComposable
|
||||
import androidx.compose.ui.text.SpanStyle
|
||||
import androidx.compose.ui.text.TextStyle
|
||||
|
||||
/**
|
||||
* Defines a span style for clickable span texts. Useful because spans require a
|
||||
|
|
|
@ -21,7 +21,6 @@ import com.x8bit.bitwarden.ui.vault.feature.addedit.model.UriItem
|
|||
* @property onSetupTotpClick Handles the action when the setup TOTP button is clicked.
|
||||
* @property onCopyTotpKeyClick Handles the action when the copy TOTP text button is clicked.
|
||||
* @property onClearTotpKeyClick Handles the action when the clear TOTP text button is clicked.
|
||||
* @property onUriSettingsClick Handles the action when the URI settings button is clicked.
|
||||
* @property onAddNewUriClick Handles the action when the add new URI button is clicked.
|
||||
*/
|
||||
@Suppress("LongParameterList")
|
||||
|
|
Loading…
Add table
Reference in a new issue