mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
[PM-9361] Generate Swagger specs in CI for the SDK (#4428)
Co-authored-by: Oscar Hinton <Hinton@users.noreply.github.com>
This commit is contained in:
parent
8253de350b
commit
1a584b4477
45
.github/workflows/build.yml
vendored
45
.github/workflows/build.yml
vendored
@ -385,7 +385,7 @@ jobs:
|
|||||||
path: docker-stub-EU-sha256.txt
|
path: docker-stub-EU-sha256.txt
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: Build Swagger
|
- name: Build Public API Swagger
|
||||||
run: |
|
run: |
|
||||||
cd ./src/Api
|
cd ./src/Api
|
||||||
echo "Restore tools"
|
echo "Restore tools"
|
||||||
@ -402,12 +402,53 @@ jobs:
|
|||||||
DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX: 2
|
DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX: 2
|
||||||
GLOBALSETTINGS__SQLSERVER__CONNECTIONSTRING: "placeholder"
|
GLOBALSETTINGS__SQLSERVER__CONNECTIONSTRING: "placeholder"
|
||||||
|
|
||||||
- name: Upload Swagger artifact
|
- name: Upload Public API Swagger artifact
|
||||||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||||
with:
|
with:
|
||||||
name: swagger.json
|
name: swagger.json
|
||||||
path: swagger.json
|
path: swagger.json
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
|
- name: Build Internal API Swagger
|
||||||
|
run: |
|
||||||
|
cd ./src/Api
|
||||||
|
echo "Restore API tools"
|
||||||
|
dotnet tool restore
|
||||||
|
echo "Publish API"
|
||||||
|
dotnet publish -c "Release" -o obj/build-output/publish
|
||||||
|
|
||||||
|
dotnet swagger tofile --output ../../internal.json --host https://api.bitwarden.com \
|
||||||
|
./obj/build-output/publish/Api.dll internal
|
||||||
|
|
||||||
|
cd ../Identity
|
||||||
|
|
||||||
|
echo "Restore Identity tools"
|
||||||
|
dotnet tool restore
|
||||||
|
echo "Publish Identity"
|
||||||
|
dotnet publish -c "Release" -o obj/build-output/publish
|
||||||
|
|
||||||
|
dotnet swagger tofile --output ../../identity.json --host https://identity.bitwarden.com \
|
||||||
|
./obj/build-output/publish/Identity.dll v1
|
||||||
|
cd ../..
|
||||||
|
env:
|
||||||
|
ASPNETCORE_ENVIRONMENT: Development
|
||||||
|
swaggerGen: "True"
|
||||||
|
DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX: 2
|
||||||
|
GLOBALSETTINGS__SQLSERVER__CONNECTIONSTRING: "placeholder"
|
||||||
|
|
||||||
|
- name: Upload Internal API Swagger artifact
|
||||||
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||||
|
with:
|
||||||
|
name: internal.json
|
||||||
|
path: internal.json
|
||||||
|
if-no-files-found: error
|
||||||
|
|
||||||
|
- name: Upload Identity Swagger artifact
|
||||||
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||||
|
with:
|
||||||
|
name: identity.json
|
||||||
|
path: identity.json
|
||||||
|
if-no-files-found: error
|
||||||
|
|
||||||
build-mssqlmigratorutility:
|
build-mssqlmigratorutility:
|
||||||
name: Build MSSQL migrator utility
|
name: Build MSSQL migrator utility
|
||||||
|
@ -80,6 +80,7 @@ public class OrganizationAuthRequestsController : Controller
|
|||||||
await _updateOrganizationAuthRequestCommand.UpdateAsync(orgId, model.Select(x => x.ToOrganizationAuthRequestUpdate()));
|
await _updateOrganizationAuthRequestCommand.UpdateAsync(orgId, model.Select(x => x.ToOrganizationAuthRequestUpdate()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[NonAction]
|
||||||
public async Task ValidateAdminRequest(Guid orgId)
|
public async Task ValidateAdminRequest(Guid orgId)
|
||||||
{
|
{
|
||||||
if (!await _currentContext.ManageResetPassword(orgId))
|
if (!await _currentContext.ManageResetPassword(orgId))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user