mirror of
https://github.com/gosticks/open-project-flutter-api.git
synced 2025-10-16 11:55:34 +00:00
67 lines
2.1 KiB
Dart
67 lines
2.1 KiB
Dart
//
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
//
|
|
// @dart=2.12
|
|
|
|
// ignore_for_file: unused_element, unused_import
|
|
// ignore_for_file: always_put_required_named_parameters_first
|
|
// ignore_for_file: constant_identifier_names
|
|
// ignore_for_file: lines_longer_than_80_chars
|
|
|
|
import 'package:openapi/api.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
|
|
/// tests for ActionsCapabilitiesApi
|
|
void main() {
|
|
// final instance = ActionsCapabilitiesApi();
|
|
|
|
group('tests for ActionsCapabilitiesApi', () {
|
|
// List actions
|
|
//
|
|
// Returns a collection of actions. The client can choose to filter the actions similar to how work packages are filtered. In addition to the provided filters, the server will reduce the result set to only contain actions, for which the requesting client has sufficient permissions.
|
|
//
|
|
//Future<Object> listActions({ String filters, String sortBy }) async
|
|
test('test listActions', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List capabilities
|
|
//
|
|
// Returns a collection of actions assigned to a principal in a context. The client can choose to filter the actions similar to how work packages are filtered. In addition to the provided filters, the server will reduce the result set to only contain actions, for which the requesting client has sufficient permissions
|
|
//
|
|
//Future<Object> listCapabilities({ String filters, String sortBy }) async
|
|
test('test listCapabilities', () async {
|
|
// TODO
|
|
});
|
|
|
|
// View action
|
|
//
|
|
// Returns an individual action.
|
|
//
|
|
//Future<Object> viewAction(String id) async
|
|
test('test viewAction', () async {
|
|
// TODO
|
|
});
|
|
|
|
// View capabilities
|
|
//
|
|
//
|
|
//
|
|
//Future<Object> viewCapabilities(String id) async
|
|
test('test viewCapabilities', () async {
|
|
// TODO
|
|
});
|
|
|
|
// View global context
|
|
//
|
|
// Returns the global capability context. This context is necessary to consistently link to a context even if the context is not a project.
|
|
//
|
|
//Future<Object> viewGlobalContext() async
|
|
test('test viewGlobalContext', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|