-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(nextcloud): Add support for password_policy
Signed-off-by: provokateurin <[email protected]>
- Loading branch information
1 parent
3f3efcd
commit 232ebc4
Showing
21 changed files
with
4,137 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule nextcloud-password_policy
added at
1ce1ce
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import 'package:nextcloud/src/api/password_policy/password_policy.openapi.dart'; | ||
import 'package:nextcloud/src/nextcloud_client.dart'; | ||
|
||
export 'package:nextcloud/src/api/password_policy/password_policy.openapi.dart'; | ||
|
||
/// ID for the password_policy app. | ||
const String appID = 'password_policy'; | ||
|
||
/// Client for the password_policy APIs. | ||
extension PasswordPolicyExtension on NextcloudClient { | ||
static final _passwordPolicy = Expando<$Client>(); | ||
|
||
/// Client for the password_policy APIs. | ||
$Client get passwordPolicy => _passwordPolicy[this] ??= $Client.fromClient(this); | ||
} |
Oops, something went wrong.