Skip to content
This repository was archived by the owner on Aug 1, 2021. It is now read-only.

Commit 43759c8

Browse files
Merge pull request #186 from brunohbrito/dev
v3.0.2
2 parents 7e0718c + eb495ec commit 43759c8

42 files changed

Lines changed: 4131 additions & 2881 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ This is an Administrator Panel for IdentityServer4. It's available in 2 versions
88

99
# Several break changes
1010

11-
The version ASP.NET Core 3.0 have changed a lot. So before upgrade read differences between light and full version. At the end it's the same project . But splited repo's.
11+
The new version, written in ASP.NET Core 3.0, changed a lot. So before upgrade read differences between light and full version. If have the past version, don't worry. It's the same project at all. But splited repo's.
1212

1313
# Installation
1414

15-
If you know the differences between Light and Full. Check the installation instructions below. If wanna understand, check more here [Presentation](#presentation) version.
15+
If you know the differences between Light and Full. Check the installation instructions below. If wanna understand, check more here at[Presentation](#presentation) section.
1616

1717
## Full Install
1818

1919
Go to this [repo](https://github.com/brunohbrito/JPProject.IdentityServer4.SSO) and follow instructions there.
2020

2121
## Light Install
2222

23-
You will need to create a Client and API resources in you IdentityServer4. At the end of this section there are some shortcuts.
23+
You will need to create a Client and API resources in your IdentityServer4. At the end of this section there are some shortcuts.
2424

2525
1. [Download](https://github.com/brunohbrito/JPProject.IdentityServer4.AdminUI/archive/master.zip)/Clone or [Fork](https://github.com/brunohbrito/JPProject.IdentityServer4.AdminUI/fork) this repository.
2626
2. Open `environment.ts` and change settings for you SSO.
@@ -82,6 +82,7 @@ Client configuration
8282
IdentityTokenLifetime = 3600,
8383
LogoUri = "https://jpproject.azurewebsites.net/sso/images/brand/logo.png",
8484
AuthorizationCodeLifetime = 3600,
85+
PostLogoutRedirectUris = {$"{configuration["ApplicationSettings:IS4AdminUi"]}",},
8586
AllowedScopes =
8687
{
8788
IdentityServerConstants.StandardScopes.OpenId,
@@ -145,6 +146,7 @@ Api resource configuration
145146
- [Docs](#docs)
146147
- [Contributing](#contributing)
147148
- [Free](#free)
149+
- [3.0.2](#302)
148150
- [3.0.1](#301)
149151
- [v1.4.5](#v145)
150152
- [What comes next?](#what-comes-next)
@@ -252,6 +254,12 @@ We'll love it! Please [Read the docs](https://jp-project.readthedocs.io/en/lates
252254
If you need help building or running your Jp Project platform
253255
There are several ways we can help you out.
254256
257+
## 3.0.2
258+
259+
1. Menu translation
260+
2. Email support for full version
261+
3. Email configuration settings (SMTP / Password) for full version
262+
255263
## 3.0.1
256264
257265
1. ASP.NET Core 3.0 support

azure-pipelines.pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
displayName: 'NPM - Build Prod - AdminUI'
5454
inputs:
5555
command: custom
56-
customCommand: 'run build -- --base-href=/admin-ui/'
56+
customCommand: 'run build'
5757
workingDir: src/Frontend/Jp.AdminUI
5858

5959
- job: 'docker'

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
displayName: 'NPM - Build Prod - AdminUI'
8181
inputs:
8282
command: custom
83-
customCommand: 'run build -- --base-href=/admin-ui/'
83+
customCommand: 'run build'
8484
workingDir: src/Frontend/Jp.AdminUI
8585

8686
- task: ArchiveFiles@2
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Set-Location ..
2+
docker build -f .\build\continuous-delivery\admin-prod.dockerfile -t bhdebrito/jpproject-admin-ui:prd .
3+
docker push bhdebrito/jpproject-admin-ui:prd
4+

build/image002.jpg

800 Bytes
Loading

src/Backend/JPProject.Admin.Api/JPProject.Admin.Api.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@
1010
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="7.0.0" />
1111
<PackageReference Include="Hellang.Middleware.ProblemDetails" Version="3.1.0" />
1212
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="3.0.1" />
13-
<PackageReference Include="JPProject.Admin.Application" Version="3.0.1" />
14-
<PackageReference Include="JPProject.Admin.Database" Version="3.0.1" />
15-
<PackageReference Include="JPProject.AspNet.Core" Version="3.0.1" />
13+
<PackageReference Include="JPProject.Admin.Application" Version="3.0.3" />
14+
<PackageReference Include="JPProject.Admin.Database" Version="3.0.3" />
15+
<PackageReference Include="JPProject.AspNet.Core" Version="3.0.3" />
1616
<PackageReference Include="MediatR.Extensions.Microsoft.DependencyInjection" Version="7.0.0" />
1717
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.8.2" />
1818
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0" />
19-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.0.0">
19+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.0.1">
2020
<PrivateAssets>all</PrivateAssets>
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2222
</PackageReference>
23-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.0.0" />
23+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.0.1" />
2424
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.9.5" />
2525
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.0.0" />
26-
<PackageReference Include="Serilog.AspNetCore" Version="3.1.0" />
26+
<PackageReference Include="Serilog.AspNetCore" Version="3.2.0" />
2727
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="3.0.0" />
2828
<PackageReference Include="Serilog.Sinks.ApplicationInsights" Version="3.0.4" />
2929
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />

src/Frontend/Jp.AdminUI/Translate.json

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/Frontend/Jp.AdminUI/angular.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"polyfills": "src/polyfills.ts",
2929
"assets": [
3030
"src/assets",
31-
"src/silent-refresh.html",
31+
"src/silent-refresh.html"
3232
],
3333
"styles": [
3434
"src/app/core/preloader/preloader.scss",

src/Frontend/Jp.AdminUI/package-lock.json

Lines changed: 21 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Frontend/Jp.AdminUI/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,14 @@
3434
"@angular/platform-browser-dynamic": "^8.1.3",
3535
"@angular/router": "^8.1.3",
3636
"@fortawesome/fontawesome-free": "^5.9.0",
37+
"@kolkov/angular-editor": "^1.0.0-rc.1",
3738
"@ng-bootstrap/ng-bootstrap": "^5.1.0",
3839
"@ngx-translate/core": "^11.0.1",
3940
"@ngx-translate/http-loader": "^4.0.0",
4041
"@swimlane/ngx-datatable": "^15.0.2",
4142
"ag-grid": "^18.1.2",
4243
"ag-grid-angular": "^21.1.0",
44+
"angular-froala-wysiwyg": "^3.0.6",
4345
"angular-oauth2-oidc": "^8.0.2",
4446
"angular-tree-component": "^8.3.0",
4547
"angular2-text-mask": "9.0.0",
@@ -82,7 +84,6 @@
8284
"simple-line-icons": "2.4.1",
8385
"source-sans-pro": "^2.20.2",
8486
"spinkit": "1.2.5",
85-
"summernote": "^0.8.11",
8687
"sweetalert": "2.1.2",
8788
"sweetalert2": "^8.15.1",
8889
"weather-icons": "1.3.2",

0 commit comments

Comments
 (0)