├── .gitattributes ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── EasyAbp.IdentityServerAdmin.sln ├── EasyAbp.IdentityServerAdmin.sln.DotSettings ├── README.md ├── angular ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── package.json ├── projects │ ├── dev-app │ │ ├── .browserslistrc │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── favicon.ico │ │ ├── karma.conf.js │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── home │ │ │ │ │ ├── home-routing.module.ts │ │ │ │ │ ├── home.component.html │ │ │ │ │ ├── home.component.ts │ │ │ │ │ └── home.module.ts │ │ │ │ ├── route.provider.ts │ │ │ │ └── shared │ │ │ │ │ └── shared.module.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.scss │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.prod.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ └── identity-server-admin │ │ ├── README.md │ │ ├── config │ │ ├── ng-package.json │ │ └── src │ │ │ ├── enums │ │ │ ├── index.ts │ │ │ └── route-names.ts │ │ │ ├── identity-server-admin-config.module.ts │ │ │ ├── providers │ │ │ ├── index.ts │ │ │ └── route.provider.ts │ │ │ └── public-api.ts │ │ ├── karma.conf.js │ │ ├── ng-package.json │ │ ├── ngcc.config.js │ │ ├── package.json │ │ ├── src │ │ ├── lib │ │ │ ├── components │ │ │ │ └── identity-server-admin.component.ts │ │ │ ├── identity-server-admin-routing.module.ts │ │ │ ├── identity-server-admin.component.spec.ts │ │ │ ├── identity-server-admin.module.ts │ │ │ ├── identity-server-admin.service.spec.ts │ │ │ └── services │ │ │ │ └── identity-server-admin.service.ts │ │ ├── public-api.ts │ │ └── test.ts │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.lib.prod.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json ├── tsconfig.base.json ├── tsconfig.json ├── tsconfig.prod.json └── tslint.json ├── common.props ├── database ├── Dockerfile └── entrypoint.sh ├── docker-compose.migrations.yml ├── docker-compose.override.yml ├── docker-compose.yml ├── host ├── EasyAbp.IdentityServerAdmin.Host.Shared │ ├── EasyAbp.IdentityServerAdmin.Host.Shared.csproj │ └── MultiTenancy │ │ └── MultiTenancyConsts.cs ├── EasyAbp.IdentityServerAdmin.HttpApi.Host │ ├── Controllers │ │ └── HomeController.cs │ ├── Dockerfile │ ├── EasyAbp.IdentityServerAdmin.HttpApi.Host.csproj │ ├── EntityFrameworkCore │ │ ├── IdentityServerAdminHttpApiHostMigrationsDbContext.cs │ │ └── IdentityServerAdminHttpApiHostMigrationsDbContextFactory.cs │ ├── IdentityServerAdminHttpApiHostModule.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.json │ └── yarn.lock ├── EasyAbp.IdentityServerAdmin.IdentityServer │ ├── Dockerfile │ ├── EasyAbp.IdentityServerAdmin.IdentityServer.csproj │ ├── EntityFrameworkCore │ │ ├── IdentityServerHostMigrationsDbContext.cs │ │ └── IdentityServerHostMigrationsDbContextFactory.cs │ ├── IdentityServer │ │ └── IdentityServerDataSeedContributor.cs │ ├── IdentityServerAdminIdentityServerModule.cs │ ├── Migrations │ │ ├── 20200624023331_Initial.Designer.cs │ │ ├── 20200624023331_Initial.cs │ │ └── IdentityServerHostMigrationsDbContextModelSnapshot.cs │ ├── Pages │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ └── _ViewImports.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── abp.resourcemapping.js │ ├── appsettings.json │ ├── gulpfile.js │ ├── package-lock.json │ ├── package.json │ ├── tempkey.rsa │ ├── wwwroot │ │ └── libs │ │ │ ├── @fortawesome │ │ │ └── fontawesome-free │ │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ └── v4-shims.css │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── abp │ │ │ ├── core │ │ │ │ ├── abp.css │ │ │ │ └── abp.js │ │ │ ├── jquery │ │ │ │ └── abp.jquery.js │ │ │ └── utils │ │ │ │ ├── abp-utils.umd.js │ │ │ │ ├── abp-utils.umd.js.map │ │ │ │ ├── abp-utils.umd.min.js │ │ │ │ └── abp-utils.umd.min.js.map │ │ │ ├── bootstrap-datepicker │ │ │ ├── bootstrap-datepicker.css.map │ │ │ ├── bootstrap-datepicker.min.css │ │ │ ├── bootstrap-datepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ ├── bootstrap-rtl.css.map │ │ │ │ ├── bootstrap-rtl.min.css │ │ │ │ ├── bootstrap-rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ └── bootstrap.bundle.min.js.map │ │ │ ├── datatables.net-bs4 │ │ │ ├── css │ │ │ │ └── dataTables.bootstrap4.css │ │ │ └── js │ │ │ │ └── dataTables.bootstrap4.js │ │ │ ├── datatables.net │ │ │ └── js │ │ │ │ └── jquery.dataTables.js │ │ │ ├── jquery-form │ │ │ ├── jquery.form.min.js │ │ │ └── jquery.form.min.js.map │ │ │ ├── jquery-validation-unobtrusive │ │ │ └── jquery.validate.unobtrusive.js │ │ │ ├── jquery-validation │ │ │ ├── jquery.validate.js │ │ │ └── localization │ │ │ │ ├── messages_ar.js │ │ │ │ ├── messages_ar.min.js │ │ │ │ ├── messages_az.js │ │ │ │ ├── messages_az.min.js │ │ │ │ ├── messages_bg.js │ │ │ │ ├── messages_bg.min.js │ │ │ │ ├── messages_bn_BD.js │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ ├── messages_ca.js │ │ │ │ ├── messages_ca.min.js │ │ │ │ ├── messages_cs.js │ │ │ │ ├── messages_cs.min.js │ │ │ │ ├── messages_da.js │ │ │ │ ├── messages_da.min.js │ │ │ │ ├── messages_de.js │ │ │ │ ├── messages_de.min.js │ │ │ │ ├── messages_el.js │ │ │ │ ├── messages_el.min.js │ │ │ │ ├── messages_es.js │ │ │ │ ├── messages_es.min.js │ │ │ │ ├── messages_es_AR.js │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ ├── messages_es_PE.js │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ ├── messages_et.js │ │ │ │ ├── messages_et.min.js │ │ │ │ ├── messages_eu.js │ │ │ │ ├── messages_eu.min.js │ │ │ │ ├── messages_fa.js │ │ │ │ ├── messages_fa.min.js │ │ │ │ ├── messages_fi.js │ │ │ │ ├── messages_fi.min.js │ │ │ │ ├── messages_fr.js │ │ │ │ ├── messages_fr.min.js │ │ │ │ ├── messages_ge.js │ │ │ │ ├── messages_ge.min.js │ │ │ │ ├── messages_gl.js │ │ │ │ ├── messages_gl.min.js │ │ │ │ ├── messages_he.js │ │ │ │ ├── messages_he.min.js │ │ │ │ ├── messages_hr.js │ │ │ │ ├── messages_hr.min.js │ │ │ │ ├── messages_hu.js │ │ │ │ ├── messages_hu.min.js │ │ │ │ ├── messages_hy_AM.js │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ ├── messages_id.js │ │ │ │ ├── messages_id.min.js │ │ │ │ ├── messages_is.js │ │ │ │ ├── messages_is.min.js │ │ │ │ ├── messages_it.js │ │ │ │ ├── messages_it.min.js │ │ │ │ ├── messages_ja.js │ │ │ │ ├── messages_ja.min.js │ │ │ │ ├── messages_ka.js │ │ │ │ ├── messages_ka.min.js │ │ │ │ ├── messages_kk.js │ │ │ │ ├── messages_kk.min.js │ │ │ │ ├── messages_ko.js │ │ │ │ ├── messages_ko.min.js │ │ │ │ ├── messages_lt.js │ │ │ │ ├── messages_lt.min.js │ │ │ │ ├── messages_lv.js │ │ │ │ ├── messages_lv.min.js │ │ │ │ ├── messages_mk.js │ │ │ │ ├── messages_mk.min.js │ │ │ │ ├── messages_my.js │ │ │ │ ├── messages_my.min.js │ │ │ │ ├── messages_nl.js │ │ │ │ ├── messages_nl.min.js │ │ │ │ ├── messages_no.js │ │ │ │ ├── messages_no.min.js │ │ │ │ ├── messages_pl.js │ │ │ │ ├── messages_pl.min.js │ │ │ │ ├── messages_pt_BR.js │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ ├── messages_pt_PT.js │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ ├── messages_ro.js │ │ │ │ ├── messages_ro.min.js │ │ │ │ ├── messages_ru.js │ │ │ │ ├── messages_ru.min.js │ │ │ │ ├── messages_sd.js │ │ │ │ ├── messages_sd.min.js │ │ │ │ ├── messages_si.js │ │ │ │ ├── messages_si.min.js │ │ │ │ ├── messages_sk.js │ │ │ │ ├── messages_sk.min.js │ │ │ │ ├── messages_sl.js │ │ │ │ ├── messages_sl.min.js │ │ │ │ ├── messages_sr.js │ │ │ │ ├── messages_sr.min.js │ │ │ │ ├── messages_sr_lat.js │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ ├── messages_sv.js │ │ │ │ ├── messages_sv.min.js │ │ │ │ ├── messages_th.js │ │ │ │ ├── messages_th.min.js │ │ │ │ ├── messages_tj.js │ │ │ │ ├── messages_tj.min.js │ │ │ │ ├── messages_tr.js │ │ │ │ ├── messages_tr.min.js │ │ │ │ ├── messages_uk.js │ │ │ │ ├── messages_uk.min.js │ │ │ │ ├── messages_ur.js │ │ │ │ ├── messages_ur.min.js │ │ │ │ ├── messages_vi.js │ │ │ │ ├── messages_vi.min.js │ │ │ │ ├── messages_zh.js │ │ │ │ ├── messages_zh.min.js │ │ │ │ ├── messages_zh_TW.js │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ ├── methods_de.js │ │ │ │ ├── methods_de.min.js │ │ │ │ ├── methods_es_CL.js │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ ├── methods_fi.js │ │ │ │ ├── methods_fi.min.js │ │ │ │ ├── methods_it.js │ │ │ │ ├── methods_it.min.js │ │ │ │ ├── methods_nl.js │ │ │ │ ├── methods_nl.min.js │ │ │ │ ├── methods_pt.js │ │ │ │ └── methods_pt.min.js │ │ │ ├── jquery │ │ │ └── jquery.js │ │ │ ├── lodash │ │ │ └── lodash.min.js │ │ │ ├── luxon │ │ │ ├── luxon.js │ │ │ ├── luxon.js.map │ │ │ ├── luxon.min.js │ │ │ └── luxon.min.js.map │ │ │ ├── malihu-custom-scrollbar-plugin │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ ├── mCSB_buttons.png │ │ │ ├── package.json │ │ │ └── readme.md │ │ │ ├── select2 │ │ │ ├── css │ │ │ │ └── select2.min.css │ │ │ └── js │ │ │ │ ├── i18n │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── dsb.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hsb.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── ps.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ │ ├── select2-bootstrap-modal-patch.js │ │ │ │ ├── select2.full.min.js │ │ │ │ └── select2.min.js │ │ │ ├── sweetalert │ │ │ └── sweetalert.min.js │ │ │ ├── timeago │ │ │ ├── jquery.timeago.js │ │ │ └── locales │ │ │ │ ├── README.md │ │ │ │ ├── jquery.timeago.af.js │ │ │ │ ├── jquery.timeago.am.js │ │ │ │ ├── jquery.timeago.ar.js │ │ │ │ ├── jquery.timeago.az-short.js │ │ │ │ ├── jquery.timeago.az.js │ │ │ │ ├── jquery.timeago.be.js │ │ │ │ ├── jquery.timeago.bg.js │ │ │ │ ├── jquery.timeago.bs.js │ │ │ │ ├── jquery.timeago.ca.js │ │ │ │ ├── jquery.timeago.cs.js │ │ │ │ ├── jquery.timeago.cy.js │ │ │ │ ├── jquery.timeago.da.js │ │ │ │ ├── jquery.timeago.de-short.js │ │ │ │ ├── jquery.timeago.de.js │ │ │ │ ├── jquery.timeago.dv.js │ │ │ │ ├── jquery.timeago.el.js │ │ │ │ ├── jquery.timeago.en-short.js │ │ │ │ ├── jquery.timeago.en.js │ │ │ │ ├── jquery.timeago.es-short.js │ │ │ │ ├── jquery.timeago.es.js │ │ │ │ ├── jquery.timeago.et.js │ │ │ │ ├── jquery.timeago.eu.js │ │ │ │ ├── jquery.timeago.fa-short.js │ │ │ │ ├── jquery.timeago.fa.js │ │ │ │ ├── jquery.timeago.fi.js │ │ │ │ ├── jquery.timeago.fr-short.js │ │ │ │ ├── jquery.timeago.fr.js │ │ │ │ ├── jquery.timeago.gl.js │ │ │ │ ├── jquery.timeago.he.js │ │ │ │ ├── jquery.timeago.hr.js │ │ │ │ ├── jquery.timeago.hu.js │ │ │ │ ├── jquery.timeago.hy.js │ │ │ │ ├── jquery.timeago.id.js │ │ │ │ ├── jquery.timeago.is.js │ │ │ │ ├── jquery.timeago.it-short.js │ │ │ │ ├── jquery.timeago.it.js │ │ │ │ ├── jquery.timeago.ja.js │ │ │ │ ├── jquery.timeago.jv.js │ │ │ │ ├── jquery.timeago.ko.js │ │ │ │ ├── jquery.timeago.ky.js │ │ │ │ ├── jquery.timeago.lt.js │ │ │ │ ├── jquery.timeago.lv.js │ │ │ │ ├── jquery.timeago.mk.js │ │ │ │ ├── jquery.timeago.nl.js │ │ │ │ ├── jquery.timeago.no.js │ │ │ │ ├── jquery.timeago.pl.js │ │ │ │ ├── jquery.timeago.pt-br-short.js │ │ │ │ ├── jquery.timeago.pt-br.js │ │ │ │ ├── jquery.timeago.pt-short.js │ │ │ │ ├── jquery.timeago.pt.js │ │ │ │ ├── jquery.timeago.ro.js │ │ │ │ ├── jquery.timeago.rs.js │ │ │ │ ├── jquery.timeago.ru.js │ │ │ │ ├── jquery.timeago.rw.js │ │ │ │ ├── jquery.timeago.si.js │ │ │ │ ├── jquery.timeago.sk.js │ │ │ │ ├── jquery.timeago.sl.js │ │ │ │ ├── jquery.timeago.sq.js │ │ │ │ ├── jquery.timeago.sr.js │ │ │ │ ├── jquery.timeago.sv.js │ │ │ │ ├── jquery.timeago.th.js │ │ │ │ ├── jquery.timeago.tr-short.js │ │ │ │ ├── jquery.timeago.tr.js │ │ │ │ ├── jquery.timeago.uk.js │ │ │ │ ├── jquery.timeago.ur.js │ │ │ │ ├── jquery.timeago.uz.js │ │ │ │ ├── jquery.timeago.vi.js │ │ │ │ ├── jquery.timeago.zh-CN.js │ │ │ │ └── jquery.timeago.zh-TW.js │ │ │ └── toastr │ │ │ ├── toastr.css │ │ │ ├── toastr.js.map │ │ │ ├── toastr.min.css │ │ │ └── toastr.min.js │ └── yarn.lock ├── EasyAbp.IdentityServerAdmin.Web.Host │ ├── Controllers │ │ └── AccountController.cs │ ├── EasyAbp.IdentityServerAdmin.Web.Host.csproj │ ├── IdentityServerAdminBrandingProvider.cs │ ├── IdentityServerAdminWebAutoMapperProfile.cs │ ├── IdentityServerAdminWebHostMenuContributor.cs │ ├── IdentityServerAdminWebHostModule.cs │ ├── Pages │ │ ├── IdentityServerAdminPageModel.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ └── _ViewImports.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ └── _ViewImports.cshtml │ ├── abp.resourcemapping.js │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── gulpfile.js │ ├── package-lock.json │ ├── package.json │ ├── wwwroot │ │ └── libs │ │ │ ├── @fortawesome │ │ │ └── fontawesome-free │ │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ └── v4-shims.css │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── abp │ │ │ ├── core │ │ │ │ ├── abp.css │ │ │ │ └── abp.js │ │ │ ├── jquery │ │ │ │ └── abp.jquery.js │ │ │ └── utils │ │ │ │ ├── abp-utils.umd.js │ │ │ │ ├── abp-utils.umd.js.map │ │ │ │ ├── abp-utils.umd.min.js │ │ │ │ └── abp-utils.umd.min.js.map │ │ │ ├── bootstrap-datepicker │ │ │ ├── bootstrap-datepicker.css.map │ │ │ ├── bootstrap-datepicker.min.css │ │ │ ├── bootstrap-datepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ ├── bootstrap-rtl.css.map │ │ │ │ ├── bootstrap-rtl.min.css │ │ │ │ ├── bootstrap-rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ └── bootstrap.bundle.min.js.map │ │ │ ├── datatables.net-bs4 │ │ │ ├── css │ │ │ │ └── dataTables.bootstrap4.css │ │ │ └── js │ │ │ │ └── dataTables.bootstrap4.js │ │ │ ├── datatables.net │ │ │ └── js │ │ │ │ └── jquery.dataTables.js │ │ │ ├── jquery-form │ │ │ ├── jquery.form.min.js │ │ │ └── jquery.form.min.js.map │ │ │ ├── jquery-validation-unobtrusive │ │ │ └── jquery.validate.unobtrusive.js │ │ │ ├── jquery-validation │ │ │ ├── jquery.validate.js │ │ │ └── localization │ │ │ │ ├── messages_ar.js │ │ │ │ ├── messages_ar.min.js │ │ │ │ ├── messages_az.js │ │ │ │ ├── messages_az.min.js │ │ │ │ ├── messages_bg.js │ │ │ │ ├── messages_bg.min.js │ │ │ │ ├── messages_bn_BD.js │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ ├── messages_ca.js │ │ │ │ ├── messages_ca.min.js │ │ │ │ ├── messages_cs.js │ │ │ │ ├── messages_cs.min.js │ │ │ │ ├── messages_da.js │ │ │ │ ├── messages_da.min.js │ │ │ │ ├── messages_de.js │ │ │ │ ├── messages_de.min.js │ │ │ │ ├── messages_el.js │ │ │ │ ├── messages_el.min.js │ │ │ │ ├── messages_es.js │ │ │ │ ├── messages_es.min.js │ │ │ │ ├── messages_es_AR.js │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ ├── messages_es_PE.js │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ ├── messages_et.js │ │ │ │ ├── messages_et.min.js │ │ │ │ ├── messages_eu.js │ │ │ │ ├── messages_eu.min.js │ │ │ │ ├── messages_fa.js │ │ │ │ ├── messages_fa.min.js │ │ │ │ ├── messages_fi.js │ │ │ │ ├── messages_fi.min.js │ │ │ │ ├── messages_fr.js │ │ │ │ ├── messages_fr.min.js │ │ │ │ ├── messages_ge.js │ │ │ │ ├── messages_ge.min.js │ │ │ │ ├── messages_gl.js │ │ │ │ ├── messages_gl.min.js │ │ │ │ ├── messages_he.js │ │ │ │ ├── messages_he.min.js │ │ │ │ ├── messages_hr.js │ │ │ │ ├── messages_hr.min.js │ │ │ │ ├── messages_hu.js │ │ │ │ ├── messages_hu.min.js │ │ │ │ ├── messages_hy_AM.js │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ ├── messages_id.js │ │ │ │ ├── messages_id.min.js │ │ │ │ ├── messages_is.js │ │ │ │ ├── messages_is.min.js │ │ │ │ ├── messages_it.js │ │ │ │ ├── messages_it.min.js │ │ │ │ ├── messages_ja.js │ │ │ │ ├── messages_ja.min.js │ │ │ │ ├── messages_ka.js │ │ │ │ ├── messages_ka.min.js │ │ │ │ ├── messages_kk.js │ │ │ │ ├── messages_kk.min.js │ │ │ │ ├── messages_ko.js │ │ │ │ ├── messages_ko.min.js │ │ │ │ ├── messages_lt.js │ │ │ │ ├── messages_lt.min.js │ │ │ │ ├── messages_lv.js │ │ │ │ ├── messages_lv.min.js │ │ │ │ ├── messages_mk.js │ │ │ │ ├── messages_mk.min.js │ │ │ │ ├── messages_my.js │ │ │ │ ├── messages_my.min.js │ │ │ │ ├── messages_nl.js │ │ │ │ ├── messages_nl.min.js │ │ │ │ ├── messages_no.js │ │ │ │ ├── messages_no.min.js │ │ │ │ ├── messages_pl.js │ │ │ │ ├── messages_pl.min.js │ │ │ │ ├── messages_pt_BR.js │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ ├── messages_pt_PT.js │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ ├── messages_ro.js │ │ │ │ ├── messages_ro.min.js │ │ │ │ ├── messages_ru.js │ │ │ │ ├── messages_ru.min.js │ │ │ │ ├── messages_sd.js │ │ │ │ ├── messages_sd.min.js │ │ │ │ ├── messages_si.js │ │ │ │ ├── messages_si.min.js │ │ │ │ ├── messages_sk.js │ │ │ │ ├── messages_sk.min.js │ │ │ │ ├── messages_sl.js │ │ │ │ ├── messages_sl.min.js │ │ │ │ ├── messages_sr.js │ │ │ │ ├── messages_sr.min.js │ │ │ │ ├── messages_sr_lat.js │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ ├── messages_sv.js │ │ │ │ ├── messages_sv.min.js │ │ │ │ ├── messages_th.js │ │ │ │ ├── messages_th.min.js │ │ │ │ ├── messages_tj.js │ │ │ │ ├── messages_tj.min.js │ │ │ │ ├── messages_tr.js │ │ │ │ ├── messages_tr.min.js │ │ │ │ ├── messages_uk.js │ │ │ │ ├── messages_uk.min.js │ │ │ │ ├── messages_ur.js │ │ │ │ ├── messages_ur.min.js │ │ │ │ ├── messages_vi.js │ │ │ │ ├── messages_vi.min.js │ │ │ │ ├── messages_zh.js │ │ │ │ ├── messages_zh.min.js │ │ │ │ ├── messages_zh_TW.js │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ ├── methods_de.js │ │ │ │ ├── methods_de.min.js │ │ │ │ ├── methods_es_CL.js │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ ├── methods_fi.js │ │ │ │ ├── methods_fi.min.js │ │ │ │ ├── methods_it.js │ │ │ │ ├── methods_it.min.js │ │ │ │ ├── methods_nl.js │ │ │ │ ├── methods_nl.min.js │ │ │ │ ├── methods_pt.js │ │ │ │ └── methods_pt.min.js │ │ │ ├── jquery │ │ │ └── jquery.js │ │ │ ├── lodash │ │ │ └── lodash.min.js │ │ │ ├── luxon │ │ │ ├── luxon.js │ │ │ ├── luxon.js.map │ │ │ ├── luxon.min.js │ │ │ └── luxon.min.js.map │ │ │ ├── malihu-custom-scrollbar-plugin │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ ├── mCSB_buttons.png │ │ │ ├── package.json │ │ │ └── readme.md │ │ │ ├── select2 │ │ │ ├── css │ │ │ │ └── select2.min.css │ │ │ └── js │ │ │ │ ├── i18n │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── dsb.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hsb.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── ps.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ │ ├── select2-bootstrap-modal-patch.js │ │ │ │ ├── select2.full.min.js │ │ │ │ └── select2.min.js │ │ │ ├── sweetalert │ │ │ └── sweetalert.min.js │ │ │ ├── timeago │ │ │ ├── jquery.timeago.js │ │ │ └── locales │ │ │ │ ├── README.md │ │ │ │ ├── jquery.timeago.af.js │ │ │ │ ├── jquery.timeago.am.js │ │ │ │ ├── jquery.timeago.ar.js │ │ │ │ ├── jquery.timeago.az-short.js │ │ │ │ ├── jquery.timeago.az.js │ │ │ │ ├── jquery.timeago.be.js │ │ │ │ ├── jquery.timeago.bg.js │ │ │ │ ├── jquery.timeago.bs.js │ │ │ │ ├── jquery.timeago.ca.js │ │ │ │ ├── jquery.timeago.cs.js │ │ │ │ ├── jquery.timeago.cy.js │ │ │ │ ├── jquery.timeago.da.js │ │ │ │ ├── jquery.timeago.de-short.js │ │ │ │ ├── jquery.timeago.de.js │ │ │ │ ├── jquery.timeago.dv.js │ │ │ │ ├── jquery.timeago.el.js │ │ │ │ ├── jquery.timeago.en-short.js │ │ │ │ ├── jquery.timeago.en.js │ │ │ │ ├── jquery.timeago.es-short.js │ │ │ │ ├── jquery.timeago.es.js │ │ │ │ ├── jquery.timeago.et.js │ │ │ │ ├── jquery.timeago.eu.js │ │ │ │ ├── jquery.timeago.fa-short.js │ │ │ │ ├── jquery.timeago.fa.js │ │ │ │ ├── jquery.timeago.fi.js │ │ │ │ ├── jquery.timeago.fr-short.js │ │ │ │ ├── jquery.timeago.fr.js │ │ │ │ ├── jquery.timeago.gl.js │ │ │ │ ├── jquery.timeago.he.js │ │ │ │ ├── jquery.timeago.hr.js │ │ │ │ ├── jquery.timeago.hu.js │ │ │ │ ├── jquery.timeago.hy.js │ │ │ │ ├── jquery.timeago.id.js │ │ │ │ ├── jquery.timeago.is.js │ │ │ │ ├── jquery.timeago.it-short.js │ │ │ │ ├── jquery.timeago.it.js │ │ │ │ ├── jquery.timeago.ja.js │ │ │ │ ├── jquery.timeago.jv.js │ │ │ │ ├── jquery.timeago.ko.js │ │ │ │ ├── jquery.timeago.ky.js │ │ │ │ ├── jquery.timeago.lt.js │ │ │ │ ├── jquery.timeago.lv.js │ │ │ │ ├── jquery.timeago.mk.js │ │ │ │ ├── jquery.timeago.nl.js │ │ │ │ ├── jquery.timeago.no.js │ │ │ │ ├── jquery.timeago.pl.js │ │ │ │ ├── jquery.timeago.pt-br-short.js │ │ │ │ ├── jquery.timeago.pt-br.js │ │ │ │ ├── jquery.timeago.pt-short.js │ │ │ │ ├── jquery.timeago.pt.js │ │ │ │ ├── jquery.timeago.ro.js │ │ │ │ ├── jquery.timeago.rs.js │ │ │ │ ├── jquery.timeago.ru.js │ │ │ │ ├── jquery.timeago.rw.js │ │ │ │ ├── jquery.timeago.si.js │ │ │ │ ├── jquery.timeago.sk.js │ │ │ │ ├── jquery.timeago.sl.js │ │ │ │ ├── jquery.timeago.sq.js │ │ │ │ ├── jquery.timeago.sr.js │ │ │ │ ├── jquery.timeago.sv.js │ │ │ │ ├── jquery.timeago.th.js │ │ │ │ ├── jquery.timeago.tr-short.js │ │ │ │ ├── jquery.timeago.tr.js │ │ │ │ ├── jquery.timeago.uk.js │ │ │ │ ├── jquery.timeago.ur.js │ │ │ │ ├── jquery.timeago.uz.js │ │ │ │ ├── jquery.timeago.vi.js │ │ │ │ ├── jquery.timeago.zh-CN.js │ │ │ │ └── jquery.timeago.zh-TW.js │ │ │ └── toastr │ │ │ ├── toastr.css │ │ │ ├── toastr.js.map │ │ │ ├── toastr.min.css │ │ │ └── toastr.min.js │ └── yarn.lock └── EasyAbp.IdentityServerAdmin.Web.Unified │ ├── EasyAbp.IdentityServerAdmin.Web.Unified.csproj │ ├── EntityFrameworkCore │ ├── UnifiedDbContext.cs │ └── UnifiedDbContextFactory.cs │ ├── IdentityServerAdminWebUnifiedModule.cs │ ├── Migrations │ ├── 20200624023340_Initial.Designer.cs │ ├── 20200624023340_Initial.cs │ └── UnifiedDbContextModelSnapshot.cs │ ├── Pages │ ├── Index.cshtml │ ├── Index.cshtml.cs │ └── _ViewImports.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── abp.resourcemapping.js │ ├── appsettings.json │ ├── gulpfile.js │ ├── package-lock.json │ ├── package.json │ ├── tempkey.rsa │ ├── wwwroot │ └── libs │ │ ├── @fortawesome │ │ └── fontawesome-free │ │ │ ├── css │ │ │ ├── all.css │ │ │ └── v4-shims.css │ │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── abp │ │ ├── core │ │ │ ├── abp.css │ │ │ └── abp.js │ │ ├── jquery │ │ │ └── abp.jquery.js │ │ └── utils │ │ │ ├── abp-utils.umd.js │ │ │ ├── abp-utils.umd.js.map │ │ │ ├── abp-utils.umd.min.js │ │ │ └── abp-utils.umd.min.js.map │ │ ├── bootstrap-datepicker │ │ ├── bootstrap-datepicker.css.map │ │ ├── bootstrap-datepicker.min.css │ │ ├── bootstrap-datepicker.min.js │ │ └── locales │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-rtl.css │ │ │ ├── bootstrap-rtl.css.map │ │ │ ├── bootstrap-rtl.min.css │ │ │ ├── bootstrap-rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ └── bootstrap.bundle.min.js.map │ │ ├── datatables.net-bs4 │ │ ├── css │ │ │ └── dataTables.bootstrap4.css │ │ └── js │ │ │ └── dataTables.bootstrap4.js │ │ ├── datatables.net │ │ └── js │ │ │ └── jquery.dataTables.js │ │ ├── jquery-form │ │ ├── jquery.form.min.js │ │ └── jquery.form.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ └── jquery.validate.unobtrusive.js │ │ ├── jquery-validation │ │ ├── jquery.validate.js │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_az.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_bn_BD.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_da.js │ │ │ ├── messages_de.js │ │ │ ├── messages_el.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_es_PE.js │ │ │ ├── messages_et.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_ge.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_he.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_hy_AM.js │ │ │ ├── messages_id.js │ │ │ ├── messages_is.js │ │ │ ├── messages_it.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_mk.js │ │ │ ├── messages_my.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_no.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_sd.js │ │ │ ├── messages_si.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_th.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_ur.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── methods_de.js │ │ │ ├── methods_es_CL.js │ │ │ ├── methods_fi.js │ │ │ ├── methods_nl.js │ │ │ └── methods_pt.js │ │ ├── jquery │ │ └── jquery.js │ │ ├── lodash │ │ └── lodash.min.js │ │ ├── luxon │ │ ├── luxon.js │ │ ├── luxon.js.map │ │ ├── luxon.min.js │ │ └── luxon.min.js.map │ │ ├── malihu-custom-scrollbar-plugin │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ ├── jquery.mCustomScrollbar.css │ │ ├── jquery.mCustomScrollbar.js │ │ ├── mCSB_buttons.png │ │ ├── package.json │ │ └── readme.md │ │ ├── select2 │ │ ├── css │ │ │ └── select2.min.css │ │ └── js │ │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ │ ├── select2-bootstrap-modal-patch.js │ │ │ ├── select2.full.min.js │ │ │ └── select2.min.js │ │ ├── sweetalert │ │ └── sweetalert.min.js │ │ ├── timeago │ │ ├── jquery.timeago.js │ │ └── locales │ │ │ ├── README.md │ │ │ ├── jquery.timeago.af.js │ │ │ ├── jquery.timeago.am.js │ │ │ ├── jquery.timeago.ar.js │ │ │ ├── jquery.timeago.az-short.js │ │ │ ├── jquery.timeago.az.js │ │ │ ├── jquery.timeago.be.js │ │ │ ├── jquery.timeago.bg.js │ │ │ ├── jquery.timeago.bs.js │ │ │ ├── jquery.timeago.ca.js │ │ │ ├── jquery.timeago.cs.js │ │ │ ├── jquery.timeago.cy.js │ │ │ ├── jquery.timeago.da.js │ │ │ ├── jquery.timeago.de-short.js │ │ │ ├── jquery.timeago.de.js │ │ │ ├── jquery.timeago.dv.js │ │ │ ├── jquery.timeago.el.js │ │ │ ├── jquery.timeago.en-short.js │ │ │ ├── jquery.timeago.en.js │ │ │ ├── jquery.timeago.es-short.js │ │ │ ├── jquery.timeago.es.js │ │ │ ├── jquery.timeago.et.js │ │ │ ├── jquery.timeago.eu.js │ │ │ ├── jquery.timeago.fa-short.js │ │ │ ├── jquery.timeago.fa.js │ │ │ ├── jquery.timeago.fi.js │ │ │ ├── jquery.timeago.fr-short.js │ │ │ ├── jquery.timeago.fr.js │ │ │ ├── jquery.timeago.gl.js │ │ │ ├── jquery.timeago.he.js │ │ │ ├── jquery.timeago.hr.js │ │ │ ├── jquery.timeago.hu.js │ │ │ ├── jquery.timeago.hy.js │ │ │ ├── jquery.timeago.id.js │ │ │ ├── jquery.timeago.is.js │ │ │ ├── jquery.timeago.it-short.js │ │ │ ├── jquery.timeago.it.js │ │ │ ├── jquery.timeago.ja.js │ │ │ ├── jquery.timeago.jv.js │ │ │ ├── jquery.timeago.ko.js │ │ │ ├── jquery.timeago.ky.js │ │ │ ├── jquery.timeago.lt.js │ │ │ ├── jquery.timeago.lv.js │ │ │ ├── jquery.timeago.mk.js │ │ │ ├── jquery.timeago.nl.js │ │ │ ├── jquery.timeago.no.js │ │ │ ├── jquery.timeago.pl.js │ │ │ ├── jquery.timeago.pt-br-short.js │ │ │ ├── jquery.timeago.pt-br.js │ │ │ ├── jquery.timeago.pt-short.js │ │ │ ├── jquery.timeago.pt.js │ │ │ ├── jquery.timeago.ro.js │ │ │ ├── jquery.timeago.rs.js │ │ │ ├── jquery.timeago.ru.js │ │ │ ├── jquery.timeago.rw.js │ │ │ ├── jquery.timeago.si.js │ │ │ ├── jquery.timeago.sk.js │ │ │ ├── jquery.timeago.sl.js │ │ │ ├── jquery.timeago.sq.js │ │ │ ├── jquery.timeago.sr.js │ │ │ ├── jquery.timeago.sv.js │ │ │ ├── jquery.timeago.th.js │ │ │ ├── jquery.timeago.tr-short.js │ │ │ ├── jquery.timeago.tr.js │ │ │ ├── jquery.timeago.uk.js │ │ │ ├── jquery.timeago.ur.js │ │ │ ├── jquery.timeago.uz.js │ │ │ ├── jquery.timeago.vi.js │ │ │ ├── jquery.timeago.zh-CN.js │ │ │ └── jquery.timeago.zh-TW.js │ │ └── toastr │ │ ├── toastr.css │ │ ├── toastr.js.map │ │ ├── toastr.min.css │ │ └── toastr.min.js │ └── yarn.lock ├── src ├── EasyAbp.IdentityServerAdmin.Application.Contracts │ ├── ApiResources │ │ ├── Dtos │ │ │ ├── ApiResourceDto.cs │ │ │ ├── ApiScopeDto.cs │ │ │ ├── ApiSecretDto.cs │ │ │ ├── CreateApiResourceInputDto.cs │ │ │ ├── GetApiResourceListInput.cs │ │ │ └── UpdateApiResourceInputDto.cs │ │ └── IApiResourceAppService.cs │ ├── Clients │ │ ├── Dtos │ │ │ ├── ClientClaimDto.cs │ │ │ ├── ClientDto.cs │ │ │ ├── ClientPropertyDto.cs │ │ │ ├── ClientSecretDto.cs │ │ │ ├── ClientType.cs │ │ │ ├── CreateClientInputDto.cs │ │ │ ├── GetClientListInputDto.cs │ │ │ └── UpdateClientInputDto.cs │ │ └── IClientAppService.cs │ ├── EasyAbp.IdentityServerAdmin.Application.Contracts.csproj │ ├── IdentityResources │ │ ├── Dtos │ │ │ ├── CreateIdentityResourceInputDto.cs │ │ │ ├── GetIdentityResourceListInputDto.cs │ │ │ ├── IdentityResourceDto.cs │ │ │ └── UpdateIdentityResourceInputDto.cs │ │ └── IIdentityResourceAppService.cs │ ├── IdentityServerAdminApplicationContractsModule.cs │ ├── Permissions │ │ ├── IdentityServerAdminPermissionDefinitionProvider.cs │ │ └── IdentityServerAdminPermissions.cs │ └── PersistedGrants │ │ ├── Dtos │ │ ├── GetPersistedGrantListInputDto.cs │ │ └── PersistedGrantDto.cs │ │ └── IPersistedGrantAppService.cs ├── EasyAbp.IdentityServerAdmin.Application │ ├── ApiResources │ │ ├── ApiResourceAppService.cs │ │ └── ApiResourceNameNowAllowedDuplicateException.cs │ ├── Clients │ │ ├── ClientAppService.cs │ │ └── ClientIdNotAllowedDuplicateException.cs │ ├── EasyAbp.IdentityServerAdmin.Application.csproj │ ├── IdentityResources │ │ ├── IdentityResourceAppService.cs │ │ └── IdentityResourceNameNotAllowedDuplicateException.cs │ ├── IdentityServerAdminAppService.cs │ ├── IdentityServerAdminApplicationAutoMapperProfile.cs │ ├── IdentityServerAdminApplicationModule.cs │ └── PersistedGrants │ │ └── PersistedGrantAppService.cs ├── EasyAbp.IdentityServerAdmin.Domain.Shared │ ├── EasyAbp.IdentityServerAdmin.Domain.Shared.csproj │ ├── IdentityServerAdminDomainSharedModule.cs │ ├── IdentityServerAdminErrorCodes.cs │ └── Localization │ │ ├── IdentityServerAdmin │ │ ├── cs.json │ │ ├── en.json │ │ ├── pl-PL.json │ │ ├── pt-BR.json │ │ ├── sl.json │ │ ├── tr.json │ │ ├── vi.json │ │ ├── zh-Hans.json │ │ └── zh-Hant.json │ │ └── IdentityServerAdminResource.cs ├── EasyAbp.IdentityServerAdmin.Domain │ ├── EasyAbp.IdentityServerAdmin.Domain.csproj │ ├── IdentityServerAdminDbProperties.cs │ ├── IdentityServerAdminDomainModule.cs │ └── Settings │ │ ├── IdentityServerAdminSettingDefinitionProvider.cs │ │ └── IdentityServerAdminSettings.cs ├── EasyAbp.IdentityServerAdmin.EntityFrameworkCore │ ├── EasyAbp.IdentityServerAdmin.EntityFrameworkCore.csproj │ └── EntityFrameworkCore │ │ ├── IIdentityServerAdminDbContext.cs │ │ ├── IdentityServerAdminDbContext.cs │ │ ├── IdentityServerAdminDbContextModelCreatingExtensions.cs │ │ ├── IdentityServerAdminEntityFrameworkCoreModule.cs │ │ └── IdentityServerAdminModelBuilderConfigurationOptions.cs ├── EasyAbp.IdentityServerAdmin.HttpApi.Client │ ├── EasyAbp.IdentityServerAdmin.HttpApi.Client.csproj │ └── IdentityServerAdminHttpApiClientModule.cs ├── EasyAbp.IdentityServerAdmin.HttpApi │ ├── EasyAbp.IdentityServerAdmin.HttpApi.csproj │ ├── IdentityServerAdminController.cs │ └── IdentityServerAdminHttpApiModule.cs ├── EasyAbp.IdentityServerAdmin.MongoDB │ ├── EasyAbp.IdentityServerAdmin.MongoDB.csproj │ └── MongoDB │ │ ├── IIdentityServerAdminMongoDbContext.cs │ │ ├── IdentityServerAdminMongoDbContext.cs │ │ ├── IdentityServerAdminMongoDbContextExtensions.cs │ │ ├── IdentityServerAdminMongoDbModule.cs │ │ └── IdentityServerAdminMongoModelBuilderConfigurationOptions.cs └── EasyAbp.IdentityServerAdmin.Web │ ├── EasyAbp.IdentityServerAdmin.Web.csproj │ ├── IdentityServerAdminOptions.cs │ ├── IdentityServerAdminWebAutoMapperProfile.cs │ ├── IdentityServerAdminWebModule.cs │ ├── Menus │ ├── IdentityServerAdminMenuContributor.cs │ └── IdentityServerAdminMenus.cs │ ├── Pages │ ├── IdentityServerAdmin │ │ ├── ApiResources │ │ │ ├── Add.razor │ │ │ ├── Edit.razor │ │ │ ├── Index.razor │ │ │ ├── _Imports.razor │ │ │ └── _Layout.razor │ │ ├── App.razor │ │ ├── Clients │ │ │ ├── Add.razor │ │ │ ├── Edit.razor │ │ │ ├── Index.razor │ │ │ ├── _Imports.razor │ │ │ └── _Layout.razor │ │ ├── Components │ │ │ ├── ApiSecrets.razor │ │ │ ├── ClientClaims.razor │ │ │ ├── ClientProperties.razor │ │ │ ├── ClientSecrets.razor │ │ │ ├── PaginationChangeArgs.cs │ │ │ ├── PaginationWrapper.razor │ │ │ ├── TagLabel.razor │ │ │ └── TagsInput.razor │ │ ├── IdentityResources │ │ │ ├── Add.razor │ │ │ ├── Edit.razor │ │ │ ├── Index.razor │ │ │ ├── _Imports.razor │ │ │ └── _Layout.razor │ │ ├── IdentityServerAdmin.css │ │ ├── Index.razor │ │ ├── PersistedGrants │ │ │ ├── Index.razor │ │ │ ├── _Imports.razor │ │ │ └── _Layout.razor │ │ ├── Shared │ │ │ └── MainLayout.razor │ │ ├── TagsInput.css │ │ ├── _Host.cshtml │ │ ├── _Host.cshtml.cs │ │ ├── _Imports.razor │ │ └── _ViewImports.cshtml │ └── IdentityServerAdminPageModel.cs │ └── Properties │ └── launchSettings.json └── test ├── EasyAbp.IdentityServerAdmin.Application.Tests ├── EasyAbp.IdentityServerAdmin.Application.Tests.csproj ├── IdentityServerAdminApplicationTestBase.cs ├── IdentityServerAdminApplicationTestModule.cs └── Samples │ └── SampleAppService_Tests.cs ├── EasyAbp.IdentityServerAdmin.Domain.Tests ├── EasyAbp.IdentityServerAdmin.Domain.Tests.csproj ├── IdentityServerAdminDomainTestBase.cs ├── IdentityServerAdminDomainTestModule.cs └── Samples │ └── SampleManager_Tests.cs ├── EasyAbp.IdentityServerAdmin.EntityFrameworkCore.Tests ├── EasyAbp.IdentityServerAdmin.EntityFrameworkCore.Tests.csproj └── EntityFrameworkCore │ ├── IdentityServerAdminEntityFrameworkCoreTestBase.cs │ ├── IdentityServerAdminEntityFrameworkCoreTestModule.cs │ └── Samples │ └── SampleRepository_Tests.cs ├── EasyAbp.IdentityServerAdmin.HttpApi.Client.ConsoleTestApp ├── ClientDemoService.cs ├── ConsoleTestAppHostedService.cs ├── EasyAbp.IdentityServerAdmin.HttpApi.Client.ConsoleTestApp.csproj ├── IdentityServerAdminConsoleApiClientModule.cs ├── Program.cs └── appsettings.json ├── EasyAbp.IdentityServerAdmin.MongoDB.Tests ├── EasyAbp.IdentityServerAdmin.MongoDB.Tests.csproj └── MongoDB │ ├── IdentityServerAdminMongoDbTestBase.cs │ ├── IdentityServerAdminMongoDbTestModule.cs │ ├── MongoDbFixture.cs │ ├── MongoTestCollection.cs │ └── Samples │ └── SampleRepository_Tests.cs └── EasyAbp.IdentityServerAdmin.TestBase ├── EasyAbp.IdentityServerAdmin.TestBase.csproj ├── IdentityServerAdminDataSeedContributor.cs ├── IdentityServerAdminTestBase.cs ├── IdentityServerAdminTestBaseModule.cs ├── Samples └── SampleRepository_Tests.cs └── Security └── FakeCurrentPrincipalAccessor.cs /.gitattributes: -------------------------------------------------------------------------------- 1 | **/wwwroot/libs/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /EasyAbp.IdentityServerAdmin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/EasyAbp.IdentityServerAdmin.sln -------------------------------------------------------------------------------- /EasyAbp.IdentityServerAdmin.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/EasyAbp.IdentityServerAdmin.sln.DotSettings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/README.md -------------------------------------------------------------------------------- /angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/.editorconfig -------------------------------------------------------------------------------- /angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/.gitignore -------------------------------------------------------------------------------- /angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/README.md -------------------------------------------------------------------------------- /angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/angular.json -------------------------------------------------------------------------------- /angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/package.json -------------------------------------------------------------------------------- /angular/projects/dev-app/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/.browserslistrc -------------------------------------------------------------------------------- /angular/projects/dev-app/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/e2e/protractor.conf.js -------------------------------------------------------------------------------- /angular/projects/dev-app/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/e2e/src/app.po.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/e2e/tsconfig.json -------------------------------------------------------------------------------- /angular/projects/dev-app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/favicon.ico -------------------------------------------------------------------------------- /angular/projects/dev-app/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/karma.conf.js -------------------------------------------------------------------------------- /angular/projects/dev-app/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/app/app.component.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/app/app.module.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/src/app/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/app/home/home-routing.module.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/src/app/home/home.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular/projects/dev-app/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/app/home/home.component.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/app/home/home.module.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/src/app/route.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/app/route.provider.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular/projects/dev-app/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/environments/environment.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/index.html -------------------------------------------------------------------------------- /angular/projects/dev-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/main.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/polyfills.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/styles.scss -------------------------------------------------------------------------------- /angular/projects/dev-app/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/src/test.ts -------------------------------------------------------------------------------- /angular/projects/dev-app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/tsconfig.app.json -------------------------------------------------------------------------------- /angular/projects/dev-app/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/tsconfig.prod.json -------------------------------------------------------------------------------- /angular/projects/dev-app/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/tsconfig.spec.json -------------------------------------------------------------------------------- /angular/projects/dev-app/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/dev-app/tslint.json -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/README.md -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/config/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/config/ng-package.json -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/config/src/enums/index.ts: -------------------------------------------------------------------------------- 1 | export * from './route-names'; 2 | -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/config/src/enums/route-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/config/src/enums/route-names.ts -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/config/src/identity-server-admin-config.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/config/src/identity-server-admin-config.module.ts -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/config/src/providers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './route.provider'; 2 | -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/config/src/providers/route.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/config/src/providers/route.provider.ts -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/config/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/config/src/public-api.ts -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/karma.conf.js -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/ng-package.json -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/ngcc.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/ngcc.config.js -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/package.json -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/src/lib/components/identity-server-admin.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/src/lib/components/identity-server-admin.component.ts -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/src/lib/identity-server-admin-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/src/lib/identity-server-admin-routing.module.ts -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/src/lib/identity-server-admin.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/src/lib/identity-server-admin.component.spec.ts -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/src/lib/identity-server-admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/src/lib/identity-server-admin.module.ts -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/src/lib/identity-server-admin.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/src/lib/identity-server-admin.service.spec.ts -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/src/lib/services/identity-server-admin.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/src/lib/services/identity-server-admin.service.ts -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/src/public-api.ts -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/src/test.ts -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/tsconfig.lib.json -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/tsconfig.spec.json -------------------------------------------------------------------------------- /angular/projects/identity-server-admin/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/projects/identity-server-admin/tslint.json -------------------------------------------------------------------------------- /angular/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/tsconfig.base.json -------------------------------------------------------------------------------- /angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/tsconfig.json -------------------------------------------------------------------------------- /angular/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/tsconfig.prod.json -------------------------------------------------------------------------------- /angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/angular/tslint.json -------------------------------------------------------------------------------- /common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/common.props -------------------------------------------------------------------------------- /database/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/database/Dockerfile -------------------------------------------------------------------------------- /database/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/database/entrypoint.sh -------------------------------------------------------------------------------- /docker-compose.migrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/docker-compose.migrations.yml -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Host.Shared/EasyAbp.IdentityServerAdmin.Host.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Host.Shared/EasyAbp.IdentityServerAdmin.Host.Shared.csproj -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Host.Shared/MultiTenancy/MultiTenancyConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Host.Shared/MultiTenancy/MultiTenancyConsts.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.HttpApi.Host/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.HttpApi.Host/Controllers/HomeController.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.HttpApi.Host/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.HttpApi.Host/Dockerfile -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.HttpApi.Host/EasyAbp.IdentityServerAdmin.HttpApi.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.HttpApi.Host/EasyAbp.IdentityServerAdmin.HttpApi.Host.csproj -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.HttpApi.Host/IdentityServerAdminHttpApiHostModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.HttpApi.Host/IdentityServerAdminHttpApiHostModule.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.HttpApi.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.HttpApi.Host/Program.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.HttpApi.Host/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.HttpApi.Host/Properties/launchSettings.json -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.HttpApi.Host/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.HttpApi.Host/Startup.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.HttpApi.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.HttpApi.Host/appsettings.json -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.HttpApi.Host/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.HttpApi.Host/yarn.lock -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/Dockerfile -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/IdentityServerAdminIdentityServerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/IdentityServerAdminIdentityServerModule.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/Migrations/20200624023331_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/Migrations/20200624023331_Initial.Designer.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/Migrations/20200624023331_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/Migrations/20200624023331_Initial.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/Pages/Index.cshtml -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/Program.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/Startup.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/abp.resourcemapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/abp.resourcemapping.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/appsettings.json -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/gulpfile.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/package-lock.json -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/package.json -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/tempkey.rsa -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/abp/core/abp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/abp/core/abp.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/abp/core/abp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/abp/core/abp.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/abp/jquery/abp.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/abp/jquery/abp.jquery.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.min.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap-rtl.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/jquery-form/jquery.form.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/jquery-form/jquery.form.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/jquery-form/jquery.form.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/jquery-form/jquery.form.min.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/jquery/jquery.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/lodash/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/lodash/lodash.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/luxon/luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/luxon/luxon.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/luxon/luxon.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/luxon/luxon.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/luxon/luxon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/luxon/luxon.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/luxon/luxon.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/luxon/luxon.min.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/css/select2.min.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/af.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ar.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/az.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/bg.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/bn.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/bs.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ca.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/cs.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/da.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/de.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/dsb.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/el.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/en.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/es.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/et.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/eu.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/fa.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/fi.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/fr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/gl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/he.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/hi.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/hr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/hsb.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/hu.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/hy.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/id.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/is.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/it.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ja.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ka.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/km.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ko.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/lt.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/lv.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/mk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ms.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/nb.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ne.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/nl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/pl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ps.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/pt-BR.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/pt.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ro.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/ru.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/sk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/sl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/sq.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/sr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/sv.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/th.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/tk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/tr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/uk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/vi.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/zh-CN.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/i18n/zh-TW.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/select2.full.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/select2/js/select2.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/sweetalert/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/sweetalert/sweetalert.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/timeago/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/timeago/jquery.timeago.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/timeago/locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/timeago/locales/README.md -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/toastr/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/toastr/toastr.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/toastr/toastr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/toastr/toastr.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/toastr/toastr.min.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/wwwroot/libs/toastr/toastr.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.IdentityServer/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.IdentityServer/yarn.lock -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/Controllers/AccountController.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/EasyAbp.IdentityServerAdmin.Web.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/EasyAbp.IdentityServerAdmin.Web.Host.csproj -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/IdentityServerAdminBrandingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/IdentityServerAdminBrandingProvider.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/IdentityServerAdminWebAutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/IdentityServerAdminWebAutoMapperProfile.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/IdentityServerAdminWebHostMenuContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/IdentityServerAdminWebHostMenuContributor.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/IdentityServerAdminWebHostModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/IdentityServerAdminWebHostModule.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/Pages/IdentityServerAdminPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/Pages/IdentityServerAdminPageModel.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/Pages/Index.cshtml -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/Program.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/Properties/launchSettings.json -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/Startup.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/abp.resourcemapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/abp.resourcemapping.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/appsettings.json -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/gulpfile.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/package-lock.json -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/package.json -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/abp/core/abp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/abp/core/abp.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/abp/core/abp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/abp/core/abp.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/abp/jquery/abp.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/abp/jquery/abp.jquery.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/abp/utils/abp-utils.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/abp/utils/abp-utils.umd.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/abp/utils/abp-utils.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/abp/utils/abp-utils.umd.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/abp/utils/abp-utils.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/abp/utils/abp-utils.umd.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/abp/utils/abp-utils.umd.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/abp/utils/abp-utils.umd.min.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap-rtl.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap-rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap-rtl.css.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap-rtl.min.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap-rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap-rtl.min.css.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/datatables.net/js/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/datatables.net/js/jquery.dataTables.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/jquery-form/jquery.form.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/jquery-form/jquery.form.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/jquery-form/jquery.form.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/jquery-form/jquery.form.min.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/jquery-validation/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/jquery-validation/jquery.validate.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/jquery/jquery.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/lodash/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/lodash/lodash.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/luxon/luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/luxon/luxon.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/luxon/luxon.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/luxon/luxon.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/luxon/luxon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/luxon/luxon.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/luxon/luxon.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/luxon/luxon.min.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/malihu-custom-scrollbar-plugin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/malihu-custom-scrollbar-plugin/readme.md -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/css/select2.min.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/af.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ar.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/az.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/bg.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/bn.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/bs.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ca.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/cs.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/da.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/de.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/dsb.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/el.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/en.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/es.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/et.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/eu.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/fa.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/fi.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/fr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/gl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/he.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/hi.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/hr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/hsb.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/hu.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/hy.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/id.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/is.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/it.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ja.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ka.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/km.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ko.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/lt.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/lv.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/mk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ms.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/nb.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ne.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/nl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/pl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ps.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/pt-BR.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/pt.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ro.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/ru.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/sk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/sl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/sq.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/sr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/sv.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/th.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/tk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/tr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/uk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/vi.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/zh-CN.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/i18n/zh-TW.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/select2.full.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/select2/js/select2.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/sweetalert/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/sweetalert/sweetalert.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/jquery.timeago.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/README.md -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.af.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.am.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ar.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.az.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.be.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.bg.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.bs.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ca.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.cs.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.cy.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.da.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.de.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.dv.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.el.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.en.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.es.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.et.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.eu.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.fa.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.fi.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.fr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.gl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.he.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.hr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.hu.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.hy.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.id.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.is.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.it.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ja.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.jv.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ko.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ky.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.lt.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.lv.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.mk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.nl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.no.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.pl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.pt-br.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.pt.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ro.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.rs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.rs.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ru.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.rw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.rw.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.si.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.sk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.sl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.sq.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.sr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.sv.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.th.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.tr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.uk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.ur.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.uz.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.vi.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.zh-CN.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/timeago/locales/jquery.timeago.zh-TW.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/toastr/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/toastr/toastr.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/toastr/toastr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/toastr/toastr.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/toastr/toastr.min.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/wwwroot/libs/toastr/toastr.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Host/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Host/yarn.lock -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/EasyAbp.IdentityServerAdmin.Web.Unified.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/EasyAbp.IdentityServerAdmin.Web.Unified.csproj -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/EntityFrameworkCore/UnifiedDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/EntityFrameworkCore/UnifiedDbContext.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/EntityFrameworkCore/UnifiedDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/EntityFrameworkCore/UnifiedDbContextFactory.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/IdentityServerAdminWebUnifiedModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/IdentityServerAdminWebUnifiedModule.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/Migrations/20200624023340_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/Migrations/20200624023340_Initial.Designer.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/Migrations/20200624023340_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/Migrations/20200624023340_Initial.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/Migrations/UnifiedDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/Migrations/UnifiedDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/Pages/Index.cshtml -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/Program.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/Properties/launchSettings.json -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/Startup.cs -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/abp.resourcemapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/abp.resourcemapping.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/appsettings.json -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/gulpfile.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/package-lock.json -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/package.json -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/tempkey.rsa -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/abp/core/abp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/abp/core/abp.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/abp/core/abp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/abp/core/abp.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/abp/jquery/abp.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/abp/jquery/abp.jquery.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/abp/utils/abp-utils.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/abp/utils/abp-utils.umd.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/abp/utils/abp-utils.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/abp/utils/abp-utils.umd.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/abp/utils/abp-utils.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/abp/utils/abp-utils.umd.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/abp/utils/abp-utils.umd.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/abp/utils/abp-utils.umd.min.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/css/bootstrap-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/css/bootstrap-rtl.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/css/bootstrap-rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/css/bootstrap-rtl.css.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/css/bootstrap-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/css/bootstrap-rtl.min.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/jquery-form/jquery.form.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/jquery-form/jquery.form.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/jquery-form/jquery.form.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/jquery-form/jquery.form.min.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/jquery-validation/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/jquery-validation/jquery.validate.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/jquery/jquery.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/lodash/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/lodash/lodash.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/luxon/luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/luxon/luxon.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/luxon/luxon.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/luxon/luxon.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/luxon/luxon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/luxon/luxon.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/luxon/luxon.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/luxon/luxon.min.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/css/select2.min.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/af.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ar.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/az.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/bg.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/bn.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/bs.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ca.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/cs.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/da.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/de.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/dsb.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/el.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/en.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/es.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/et.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/eu.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/fa.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/fi.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/fr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/gl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/he.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/hi.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/hr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/hsb.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/hu.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/hy.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/id.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/is.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/it.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ja.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ka.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/km.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ko.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/lt.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/lv.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/mk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ms.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/nb.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ne.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/nl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/pl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ps.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/pt-BR.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/pt.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ro.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/ru.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/sk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/sl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/sq.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/sr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/sv.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/th.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/tk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/tr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/uk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/vi.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/zh-CN.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/i18n/zh-TW.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/select2.full.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/select2/js/select2.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/sweetalert/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/sweetalert/sweetalert.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/jquery.timeago.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/README.md -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.af.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.am.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.ar.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.az.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.be.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.bg.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.bs.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.ca.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.cs.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.cy.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.da.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.de.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.dv.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.el.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.en.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.es.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.et.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.eu.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.fa.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.fi.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.fr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.gl.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.he.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.hr.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.hu.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.hy.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.id.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.is.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.it.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.ja.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.jv.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.ko.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.ky.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.lt.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.lv.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/timeago/locales/jquery.timeago.mk.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/toastr/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/toastr/toastr.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/toastr/toastr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/toastr/toastr.js.map -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/toastr/toastr.min.css -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/wwwroot/libs/toastr/toastr.min.js -------------------------------------------------------------------------------- /host/EasyAbp.IdentityServerAdmin.Web.Unified/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/host/EasyAbp.IdentityServerAdmin.Web.Unified/yarn.lock -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application.Contracts/ApiResources/Dtos/ApiResourceDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application.Contracts/ApiResources/Dtos/ApiResourceDto.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application.Contracts/ApiResources/Dtos/ApiScopeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application.Contracts/ApiResources/Dtos/ApiScopeDto.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application.Contracts/ApiResources/Dtos/ApiSecretDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application.Contracts/ApiResources/Dtos/ApiSecretDto.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application.Contracts/ApiResources/IApiResourceAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application.Contracts/ApiResources/IApiResourceAppService.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/ClientClaimDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/ClientClaimDto.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/ClientDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/ClientDto.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/ClientPropertyDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/ClientPropertyDto.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/ClientSecretDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/ClientSecretDto.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/ClientType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/ClientType.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/CreateClientInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/CreateClientInputDto.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/GetClientListInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/GetClientListInputDto.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/UpdateClientInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/Dtos/UpdateClientInputDto.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/IClientAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application.Contracts/Clients/IClientAppService.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application/ApiResources/ApiResourceAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application/ApiResources/ApiResourceAppService.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application/Clients/ClientAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application/Clients/ClientAppService.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application/Clients/ClientIdNotAllowedDuplicateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application/Clients/ClientIdNotAllowedDuplicateException.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application/EasyAbp.IdentityServerAdmin.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application/EasyAbp.IdentityServerAdmin.Application.csproj -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application/IdentityResources/IdentityResourceAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application/IdentityResources/IdentityResourceAppService.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application/IdentityServerAdminAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application/IdentityServerAdminAppService.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application/IdentityServerAdminApplicationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application/IdentityServerAdminApplicationModule.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Application/PersistedGrants/PersistedGrantAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Application/PersistedGrants/PersistedGrantAppService.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain.Shared/IdentityServerAdminDomainSharedModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain.Shared/IdentityServerAdminDomainSharedModule.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain.Shared/IdentityServerAdminErrorCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain.Shared/IdentityServerAdminErrorCodes.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/cs.json -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/en.json -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/pl-PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/pl-PL.json -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/pt-BR.json -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/sl.json -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/tr.json -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/vi.json -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/zh-Hans.json -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdmin/zh-Hant.json -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdminResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain.Shared/Localization/IdentityServerAdminResource.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain/EasyAbp.IdentityServerAdmin.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain/EasyAbp.IdentityServerAdmin.Domain.csproj -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain/IdentityServerAdminDbProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain/IdentityServerAdminDbProperties.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain/IdentityServerAdminDomainModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain/IdentityServerAdminDomainModule.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Domain/Settings/IdentityServerAdminSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Domain/Settings/IdentityServerAdminSettings.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.HttpApi.Client/IdentityServerAdminHttpApiClientModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.HttpApi.Client/IdentityServerAdminHttpApiClientModule.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.HttpApi/EasyAbp.IdentityServerAdmin.HttpApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.HttpApi/EasyAbp.IdentityServerAdmin.HttpApi.csproj -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.HttpApi/IdentityServerAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.HttpApi/IdentityServerAdminController.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.HttpApi/IdentityServerAdminHttpApiModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.HttpApi/IdentityServerAdminHttpApiModule.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.MongoDB/EasyAbp.IdentityServerAdmin.MongoDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.MongoDB/EasyAbp.IdentityServerAdmin.MongoDB.csproj -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.MongoDB/MongoDB/IIdentityServerAdminMongoDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.MongoDB/MongoDB/IIdentityServerAdminMongoDbContext.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.MongoDB/MongoDB/IdentityServerAdminMongoDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.MongoDB/MongoDB/IdentityServerAdminMongoDbContext.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.MongoDB/MongoDB/IdentityServerAdminMongoDbModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.MongoDB/MongoDB/IdentityServerAdminMongoDbModule.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/EasyAbp.IdentityServerAdmin.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/EasyAbp.IdentityServerAdmin.Web.csproj -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/IdentityServerAdminOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/IdentityServerAdminOptions.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/IdentityServerAdminWebAutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/IdentityServerAdminWebAutoMapperProfile.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/IdentityServerAdminWebModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/IdentityServerAdminWebModule.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Menus/IdentityServerAdminMenuContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Menus/IdentityServerAdminMenuContributor.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Menus/IdentityServerAdminMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Menus/IdentityServerAdminMenus.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/ApiResources/Add.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/ApiResources/Add.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/ApiResources/Edit.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/ApiResources/Edit.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/ApiResources/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/ApiResources/Index.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/ApiResources/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/ApiResources/_Imports.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/ApiResources/_Layout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/ApiResources/_Layout.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/App.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Clients/Add.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Clients/Add.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Clients/Edit.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Clients/Edit.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Clients/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Clients/Index.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Clients/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Clients/_Imports.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Clients/_Layout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Clients/_Layout.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Components/ApiSecrets.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Components/ApiSecrets.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Components/ClientClaims.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Components/ClientClaims.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Components/ClientSecrets.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Components/ClientSecrets.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Components/TagLabel.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Components/TagLabel.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Components/TagsInput.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Components/TagsInput.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/IdentityResources/Add.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/IdentityResources/Add.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/IdentityResources/Edit.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/IdentityResources/Edit.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/IdentityResources/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/IdentityResources/Index.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/IdentityServerAdmin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/IdentityServerAdmin.css -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Index.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/PersistedGrants/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/PersistedGrants/Index.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/PersistedGrants/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/PersistedGrants/_Imports.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/PersistedGrants/_Layout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/PersistedGrants/_Layout.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/TagsInput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/TagsInput.css -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/_Host.cshtml -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/_Host.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/_Host.cshtml.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/_Imports.razor -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdmin/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdminPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Pages/IdentityServerAdminPageModel.cs -------------------------------------------------------------------------------- /src/EasyAbp.IdentityServerAdmin.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/src/EasyAbp.IdentityServerAdmin.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.Application.Tests/IdentityServerAdminApplicationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.Application.Tests/IdentityServerAdminApplicationTestBase.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.Application.Tests/Samples/SampleAppService_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.Application.Tests/Samples/SampleAppService_Tests.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.Domain.Tests/IdentityServerAdminDomainTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.Domain.Tests/IdentityServerAdminDomainTestBase.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.Domain.Tests/IdentityServerAdminDomainTestModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.Domain.Tests/IdentityServerAdminDomainTestModule.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.Domain.Tests/Samples/SampleManager_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.Domain.Tests/Samples/SampleManager_Tests.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.HttpApi.Client.ConsoleTestApp/ClientDemoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.HttpApi.Client.ConsoleTestApp/ClientDemoService.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.HttpApi.Client.ConsoleTestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.HttpApi.Client.ConsoleTestApp/Program.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.HttpApi.Client.ConsoleTestApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.HttpApi.Client.ConsoleTestApp/appsettings.json -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.MongoDB.Tests/MongoDB/IdentityServerAdminMongoDbTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.MongoDB.Tests/MongoDB/IdentityServerAdminMongoDbTestBase.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.MongoDB.Tests/MongoDB/MongoDbFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.MongoDB.Tests/MongoDB/MongoDbFixture.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.MongoDB.Tests/MongoDB/MongoTestCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.MongoDB.Tests/MongoDB/MongoTestCollection.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.MongoDB.Tests/MongoDB/Samples/SampleRepository_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.MongoDB.Tests/MongoDB/Samples/SampleRepository_Tests.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.TestBase/EasyAbp.IdentityServerAdmin.TestBase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.TestBase/EasyAbp.IdentityServerAdmin.TestBase.csproj -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.TestBase/IdentityServerAdminDataSeedContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.TestBase/IdentityServerAdminDataSeedContributor.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.TestBase/IdentityServerAdminTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.TestBase/IdentityServerAdminTestBase.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.TestBase/IdentityServerAdminTestBaseModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.TestBase/IdentityServerAdminTestBaseModule.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.TestBase/Samples/SampleRepository_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.TestBase/Samples/SampleRepository_Tests.cs -------------------------------------------------------------------------------- /test/EasyAbp.IdentityServerAdmin.TestBase/Security/FakeCurrentPrincipalAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kefengwei/EasyAbp.IdentityServerAdmin/HEAD/test/EasyAbp.IdentityServerAdmin.TestBase/Security/FakeCurrentPrincipalAccessor.cs --------------------------------------------------------------------------------