Skip to content

Commit

Permalink
Merge pull request #18 from owncloud/add-user-groups
Browse files Browse the repository at this point in the history
Add user groups
  • Loading branch information
micbar committed Dec 15, 2021
1 parent bc511bc commit ee16b98
Show file tree
Hide file tree
Showing 22 changed files with 13,236 additions and 808 deletions.
16 changes: 16 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,32 @@ README.md
api/openapi.yaml
api_drives.go
api_drives_root.go
api_group.go
api_groups.go
api_me_drive.go
api_me_drive_root.go
api_me_drive_root_children.go
api_me_drives.go
api_user.go
api_users.go
client.go
configuration.go
docs/CollectionOfDriveItems.md
docs/CollectionOfDrives.md
docs/CollectionOfGroup.md
docs/CollectionOfUser.md
docs/Deleted.md
docs/DirectoryObject.md
docs/Drive.md
docs/DriveItem.md
docs/DrivesApi.md
docs/DrivesRootApi.md
docs/FileSystemInfo.md
docs/Folder.md
docs/FolderView.md
docs/Group.md
docs/GroupApi.md
docs/GroupsApi.md
docs/Hashes.md
docs/Identity.md
docs/IdentitySet.md
Expand All @@ -35,17 +45,23 @@ docs/OdataErrorMain.md
docs/OpenGraphFile.md
docs/Quota.md
docs/User.md
docs/UserApi.md
docs/UsersApi.md
git_push.sh
go.mod
go.sum
model_collection_of_drive_items.go
model_collection_of_drives.go
model_collection_of_group.go
model_collection_of_user.go
model_deleted.go
model_directory_object.go
model_drive.go
model_drive_item.go
model_file_system_info.go
model_folder.go
model_folder_view.go
model_group.go
model_hashes.go
model_identity.go
model_identity_set.go
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,22 +83,36 @@ Class | Method | HTTP request | Description
*DrivesApi* | [**GetDrive**](docs/DrivesApi.md#getdrive) | **Get** /drives/{drive-id} | Get drive by id
*DrivesApi* | [**UpdateDrive**](docs/DrivesApi.md#updatedrive) | **Patch** /drives/{drive-id} | Update the space
*DrivesRootApi* | [**GetRoot**](docs/DrivesRootApi.md#getroot) | **Get** /drives/{drive-id}/root | Get root from arbitrary space
*GroupApi* | [**DeleteGroup**](docs/GroupApi.md#deletegroup) | **Delete** /groups/{group-id} | Delete entity from groups
*GroupApi* | [**GetGroup**](docs/GroupApi.md#getgroup) | **Get** /groups/{group-id} | Get entity from groups by key
*GroupApi* | [**UpdateGroup**](docs/GroupApi.md#updategroup) | **Patch** /groups/{group-id} | Update entity in groups
*GroupsApi* | [**CreateGroup**](docs/GroupsApi.md#creategroup) | **Post** /groups | Add new entity to groups
*GroupsApi* | [**ListGroups**](docs/GroupsApi.md#listgroups) | **Get** /groups | Get entities from groups
*MeDriveApi* | [**GetHome**](docs/MeDriveApi.md#gethome) | **Get** /me/drive | Get personal space for user
*MeDriveRootApi* | [**HomeGetRoot**](docs/MeDriveRootApi.md#homegetroot) | **Get** /me/drive/root | Get root from personal space
*MeDriveRootChildrenApi* | [**HomeGetChildren**](docs/MeDriveRootChildrenApi.md#homegetchildren) | **Get** /me/drive/root/children | Get children from drive
*MeDrivesApi* | [**ListMyDrives**](docs/MeDrivesApi.md#listmydrives) | **Get** /me/drives | Get drives from me
*UserApi* | [**DeleteUser**](docs/UserApi.md#deleteuser) | **Delete** /users/{user-id} | Delete entity from users
*UserApi* | [**GetUser**](docs/UserApi.md#getuser) | **Get** /users/{user-id} | Get entity from users by key
*UserApi* | [**UpdateUser**](docs/UserApi.md#updateuser) | **Patch** /users/{user-id} | Update entity in users
*UsersApi* | [**CreateUser**](docs/UsersApi.md#createuser) | **Post** /users | Add new entity to users
*UsersApi* | [**ListUsers**](docs/UsersApi.md#listusers) | **Get** /users | Get entities from users


## Documentation For Models

- [CollectionOfDriveItems](docs/CollectionOfDriveItems.md)
- [CollectionOfDrives](docs/CollectionOfDrives.md)
- [CollectionOfGroup](docs/CollectionOfGroup.md)
- [CollectionOfUser](docs/CollectionOfUser.md)
- [Deleted](docs/Deleted.md)
- [DirectoryObject](docs/DirectoryObject.md)
- [Drive](docs/Drive.md)
- [DriveItem](docs/DriveItem.md)
- [FileSystemInfo](docs/FileSystemInfo.md)
- [Folder](docs/Folder.md)
- [FolderView](docs/FolderView.md)
- [Group](docs/Group.md)
- [Hashes](docs/Hashes.md)
- [Identity](docs/Identity.md)
- [IdentitySet](docs/IdentitySet.md)
Expand Down
Loading

0 comments on commit ee16b98

Please sign in to comment.