Hi,
I am upgrading my npm package v2.9.0 to v3.0.5. I created custum settings page in service page.
addSettingTab({
component: MySettingsComponents,
name: 'SettingsMenu',
order: 1
});
How can I use settings tab in my npm package? Custom page link
Old and new version is not working. Which page should use this module?
this.settingTabs.add([
{
component: MySettingsComponents,
name: 'MySettingsComponents',
order: 1,
},
]);
Yes Angular UI but not contains my problem. I need how to use settings tab in npm package (for example your setting-management npm package)? Not dev app.
Hi Mehmet,
Thank you for your answer. But I want to know how to add new tab of Setting Management page from npm package.
I used to use below block in service page.
addSettingTab({ component: MySettingsComponents, name: 'SettingsMenu', order: 1 });
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,
I want to customize your login page. But I want to use components separately. For example, I will use a language component under the page, use tenant component at the top of page. But I don't want to use css. Can I use your angular components as I explain and how?
Hi Arman,
Thank you for information.
Best regard