We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SecretRepository
1 parent 768a6c7 commit c2ba258Copy full SHA for c2ba258
model/src/commonMain/kotlin/repositories/SecretRepository.kt
@@ -48,12 +48,12 @@ interface SecretRepository {
48
): ListQueryResult<Secret>
49
50
/**
51
- * Update a secret by [id] and name with the [present][OptionalValue.Present] values.
+ * Update a secret by [id] and [name] with the [present][OptionalValue.Present] values.
52
*/
53
fun updateForIdAndName(id: HierarchyId, name: String, description: OptionalValue<String?>): Secret
54
55
56
- * Delete a secret by [id] and secret's [name].
+ * Delete a secret by [id] and [name].
57
58
fun deleteForIdAndName(id: HierarchyId, name: String)
59
}
0 commit comments