mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
parent
480a90b8c2
commit
9381d8c81e
4 changed files with 33 additions and 0 deletions
|
|
@ -29,6 +29,7 @@
|
||||||
"../node_modules/roboto-fontface/css/roboto/roboto-fontface.css",
|
"../node_modules/roboto-fontface/css/roboto/roboto-fontface.css",
|
||||||
"../node_modules/ionicons/scss/ionicons.scss",
|
"../node_modules/ionicons/scss/ionicons.scss",
|
||||||
"../node_modules/font-awesome/scss/font-awesome.scss",
|
"../node_modules/font-awesome/scss/font-awesome.scss",
|
||||||
|
"../node_modules/socicon/css/socicon.css",
|
||||||
"../node_modules/nebular-icons/scss/nebular-icons.scss",
|
"../node_modules/nebular-icons/scss/nebular-icons.scss",
|
||||||
"../node_modules/pace-js/templates/pace-theme-flash.tmpl.css",
|
"../node_modules/pace-js/templates/pace-theme-flash.tmpl.css",
|
||||||
"./app/@theme/styles/styles.scss"
|
"./app/@theme/styles/styles.scss"
|
||||||
|
|
|
||||||
5
package-lock.json
generated
5
package-lock.json
generated
|
|
@ -11281,6 +11281,11 @@
|
||||||
"hoek": "2.16.3"
|
"hoek": "2.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"socicon": {
|
||||||
|
"version": "3.0.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/socicon/-/socicon-3.0.5.tgz",
|
||||||
|
"integrity": "sha1-v6Bvz38rbzzcOUQzd0I1jp4FC20="
|
||||||
|
},
|
||||||
"socket.io": {
|
"socket.io": {
|
||||||
"version": "1.7.3",
|
"version": "1.7.3",
|
||||||
"resolved": "https://registry.npmjs.org/socket.io/-/socket.io-1.7.3.tgz",
|
"resolved": "https://registry.npmjs.org/socket.io/-/socket.io-1.7.3.tgz",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"pace-js": "1.0.2",
|
"pace-js": "1.0.2",
|
||||||
"roboto-fontface": "0.8.0",
|
"roboto-fontface": "0.8.0",
|
||||||
"rxjs": "5.5.5",
|
"rxjs": "5.5.5",
|
||||||
|
"socicon": "3.0.5",
|
||||||
"tinymce": "4.5.7",
|
"tinymce": "4.5.7",
|
||||||
"typeface-exo": "0.0.22",
|
"typeface-exo": "0.0.22",
|
||||||
"web-animations-js": "2.2.5",
|
"web-animations-js": "2.2.5",
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,24 @@ import { throwIfAlreadyLoaded } from './module-import-guard';
|
||||||
import { DataModule } from './data/data.module';
|
import { DataModule } from './data/data.module';
|
||||||
import { AnalyticsService } from './utils/analytics.service';
|
import { AnalyticsService } from './utils/analytics.service';
|
||||||
|
|
||||||
|
const socialLinks = [
|
||||||
|
{
|
||||||
|
url: 'https://github.com/akveo/nebular',
|
||||||
|
target: '_blank',
|
||||||
|
icon: 'socicon-github',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: 'https://www.facebook.com/akveo/',
|
||||||
|
target: '_blank',
|
||||||
|
icon: 'socicon-facebook',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: 'https://twitter.com/akveo_inc',
|
||||||
|
target: '_blank',
|
||||||
|
icon: 'socicon-twitter',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
const NB_CORE_PROVIDERS = [
|
const NB_CORE_PROVIDERS = [
|
||||||
...DataModule.forRoot().providers,
|
...DataModule.forRoot().providers,
|
||||||
...NbAuthModule.forRoot({
|
...NbAuthModule.forRoot({
|
||||||
|
|
@ -22,6 +40,14 @@ const NB_CORE_PROVIDERS = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
forms: {
|
||||||
|
login: {
|
||||||
|
socialLinks: socialLinks,
|
||||||
|
},
|
||||||
|
register: {
|
||||||
|
socialLinks: socialLinks,
|
||||||
|
},
|
||||||
|
},
|
||||||
}).providers,
|
}).providers,
|
||||||
NbSecurityModule.forRoot({
|
NbSecurityModule.forRoot({
|
||||||
accessControl: {
|
accessControl: {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue