Yes. There is my menu but no settings tab. Below block is not working.
export class MyModuleConfigService {
constructor(
private restService: RestService,
private settingTabs: SettingTabsService
) {
this.settingTabs.add([
{
component: MyModuleSettingsComponent,
name: MyModuleSettingsName,
order: 3,
},
]);
}
getSettings(): Observable<void> {
return this.restService.request<void, void>({
method: 'GET',
url: '/api/MyModuleConfig/Settings',
});
}
}
Hi, I am updating 3.0.5 to 3.1.2, But Login button of home page not work. I can't login. Is there any config I don't know? And then I have created a empty project. The problem continues.
"@volo/abp.ng.account": "~3.1.2",
"@volo/abp.ng.audit-logging": "~3.1.2",
"@volo/abp.ng.identity": "~3.1.2",
"@volo/abp.ng.identity-server": "~3.1.2",
"@volo/abp.ng.language-management": "~3.1.2",
"@volo/abp.ng.saas": "~3.1.2",
"@volo/abp.ng.text-template-management": "~3.1.2",
"@volo/abp.ng.theme.lepton": "~3.1.2",
This code is not redirect and not push login page!
login() {
this.authService.initLogin();
}
I wrote account/login a[href] tag on home page, but not work!
This is my env.
import { Config } from '@abp/ng.core';
const baseUrl = 'http://localhost:4200';
export const environment = {
production: false,
application: {
baseUrl,
name: 'XXX',
},
oAuthConfig: {
issuer: 'http://localhost:5002',
redirectUri: baseUrl,
clientId: 'XXX_App',
responseType: 'code',
scope: 'offline_access XXX',
},
apis: {
default: {
url: 'http://localhost:5001',
rootNamespace: 'XXX',
},
},
} as Config.Environment;
Hi Arman,
Thank you for information.
Best regard
Thank you
Hello, There was a mistake so I updated the question, sorry for the confusion. You can reproduce the bug without adding any custom features.
Hi, i recorded the issue
https://streamable.com/103ycv
In our application Identity is not the first tab, I assumed the same for yours. You can reproduce this issue by clicking a tab other than the first one, closing the modal, then reopening it.
Yes that's the problem, thank you
Hello,
We still have some migration code related to IdentityServer in the project, as we currently support customers using a product version that relies on it.
This will be addressed during release management, and the IdentityServer-related migration code will be removed accordingly.
Thank you for your effort and support