mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Apply cargo fmt
and docker images fix wrong target
This commit is contained in:
parent
15bc8d4120
commit
8a4d524d54
2
.github/workflows/docker_images.yml
vendored
2
.github/workflows/docker_images.yml
vendored
|
@ -29,7 +29,7 @@ jobs:
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
artifact: [kanidmd, radiusd]
|
target: [kanidmd, radiusd]
|
||||||
|
|
||||||
if: github.event_name == 'push'
|
if: github.event_name == 'push'
|
||||||
|
|
||||||
|
|
|
@ -566,9 +566,7 @@ impl KanidmClient {
|
||||||
id: &str,
|
id: &str,
|
||||||
gidnumber: Option<u32>,
|
gidnumber: Option<u32>,
|
||||||
) -> Result<(), ClientError> {
|
) -> Result<(), ClientError> {
|
||||||
let gx = GroupUnixExtend {
|
let gx = GroupUnixExtend { gidnumber };
|
||||||
gidnumber,
|
|
||||||
};
|
|
||||||
self.perform_post_request(format!("/v1/group/{}/_unix", id).as_str(), gx)
|
self.perform_post_request(format!("/v1/group/{}/_unix", id).as_str(), gx)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue