Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EW-811 Decouple board module dependency #5187

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
37495f6
EW-835 create a script to filter spec of APIs
Fshmit Aug 12, 2024
db27341
Merge branch 'main' into EW-835
Fshmit Aug 14, 2024
13940f8
Merge branch 'EW-835' into EW-811
SimoneRadtke-Cap Aug 16, 2024
29c24d6
EW-811 Generate api client for boards
SimoneRadtke-Cap Aug 16, 2024
3744363
Merge branch 'main' into EW-811
SimoneRadtke-Cap Aug 16, 2024
4a3e6d6
Extend filter script with filtering of schemas.
mkreuzkam-cap Aug 19, 2024
f4ac832
Remove unnecessary models.
mkreuzkam-cap Aug 19, 2024
dc5b99f
Merge branch 'main' into EW-811
mkreuzkam-cap Aug 20, 2024
a2becf1
EW-811: Base for board client module.
mkreuzkam-cap Aug 20, 2024
84c16c0
Merge branch 'main' into EW-811
mkreuzkam-cap Aug 20, 2024
8a82540
EW-811: Create getJwt and options methods to Adapter.
mkreuzkam-cap Aug 21, 2024
9faaa58
Merge branch 'main' into EW-811
mkreuzkam-cap Aug 21, 2024
359b969
Move to cc service.
mkreuzkam-cap Aug 21, 2024
86100d5
EW-811: Add getBoards to BoardClientAdapter.
mkreuzkam-cap Aug 22, 2024
6aeb3b6
Merge branch 'main' into EW-811
mkreuzkam-cap Aug 22, 2024
8bfa6fc
Add missing provider in test.
mkreuzkam-cap Aug 23, 2024
f06c77a
Clean up folder structure and add index.ts for exported api.
mkreuzkam-cap Aug 23, 2024
3ced8d7
Fix imports.
mkreuzkam-cap Aug 23, 2024
39ff87c
Exclude generated client from sonar.
mkreuzkam-cap Aug 23, 2024
9d7fbce
Tests so far.
mkreuzkam-cap Aug 23, 2024
4009617
Missing tests.
mkreuzkam-cap Aug 26, 2024
84fbf6d
Merge branch 'main' into EW-811
mkreuzkam-cap Aug 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
wwwroot/*.js
node_modules
typings
dist
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# empty npmignore to ensure all required files (e.g., in the dist folder) are published by npm
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.gitignore
.npmignore
api.ts
api/board-api.ts
base.ts
common.ts
configuration.ts
git_push.sh
index.ts
models/api-validation-error.ts
models/board-context-response.ts
models/board-external-reference-type.ts
models/board-layout.ts
models/board-parent-type.ts
models/board-response.ts
models/card-skeleton-response.ts
models/column-response.ts
models/copy-api-response.ts
models/create-board-body-params.ts
models/create-board-response.ts
models/index.ts
models/timestamps-response.ts
models/update-board-title-params.ts
models/visibility-body-params.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/* tslint:disable */
/* eslint-disable */
/**
* Schulcloud-Verbund-Software Server API
* This is v3 of Schulcloud-Verbund-Software Server. Checkout /docs for v1.
*
* The version of the OpenAPI document: 3.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/



export * from './api/board-api';

Loading
Loading