├── .dockerignore ├── .gitattributes ├── .github └── workflows │ ├── publish-docs.yml │ └── publish.yml ├── .gitignore ├── Directory.Build.props ├── EasyAbp.PrivateMessaging.sln ├── EasyAbp.PrivateMessaging.sln.DotSettings ├── LICENSE ├── common.props ├── docs ├── README.md └── images │ ├── Inbox.png │ ├── Notifications.png │ ├── ReadMessage.png │ └── WriteMessage.png ├── host ├── EasyAbp.PrivateMessaging.Host.Shared │ ├── EasyAbp.PrivateMessaging.Host.Shared.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ └── MultiTenancy │ │ └── MultiTenancyConsts.cs ├── EasyAbp.PrivateMessaging.HttpApi.Host │ ├── Controllers │ │ └── HomeController.cs │ ├── Dockerfile │ ├── EasyAbp.PrivateMessaging.HttpApi.Host.csproj │ ├── EntityFrameworkCore │ │ ├── PrivateMessagingHttpApiHostMigrationsDbContext.cs │ │ └── PrivateMessagingHttpApiHostMigrationsDbContextFactory.cs │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Migrations │ │ ├── 20200315130544_Init..Designer.cs │ │ ├── 20200315130544_Init..cs │ │ ├── 20200712183614_UpgradedToAbp3_0_1.Designer.cs │ │ ├── 20200712183614_UpgradedToAbp3_0_1.cs │ │ └── PrivateMessagingHttpApiHostMigrationsDbContextModelSnapshot.cs │ ├── PrivateMessagingHttpApiHostModule.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.json │ └── yarn.lock ├── EasyAbp.PrivateMessaging.IdentityServer │ ├── Dockerfile │ ├── EasyAbp.PrivateMessaging.IdentityServer.csproj │ ├── EntityFrameworkCore │ │ ├── IdentityServerHostMigrationsDbContext.cs │ │ └── IdentityServerHostMigrationsDbContextFactory.cs │ ├── IdentityServer │ │ └── IdentityServerDataSeedContributor.cs │ ├── Migrations │ │ ├── 20200106080828_Initial.Designer.cs │ │ ├── 20200106080828_Initial.cs │ │ ├── 20200712183355_UpgradedToAbp3_0_1.Designer.cs │ │ ├── 20200712183355_UpgradedToAbp3_0_1.cs │ │ ├── 20220102122447_UpgradedToAbp5.Designer.cs │ │ ├── 20220102122447_UpgradedToAbp5.cs │ │ ├── 20220210064926_UpgradedToAbp5_1_3.Designer.cs │ │ ├── 20220210064926_UpgradedToAbp5_1_3.cs │ │ ├── 20230113143158_UpgradedToAbp7.Designer.cs │ │ ├── 20230113143158_UpgradedToAbp7.cs │ │ ├── 20230323120046_UpgradedToAbp_7_1.Designer.cs │ │ ├── 20230323120046_UpgradedToAbp_7_1.cs │ │ ├── 20230504061101_UpgradedToAbp_7_2.Designer.cs │ │ ├── 20230504061101_UpgradedToAbp_7_2.cs │ │ ├── 20231227161630_UpgradedToAbp_8_0.Designer.cs │ │ ├── 20231227161630_UpgradedToAbp_8_0.cs │ │ ├── 20240412150150_UpgradedToAbp_8_1.Designer.cs │ │ ├── 20240412150150_UpgradedToAbp_8_1.cs │ │ ├── 20240730131706_UpgradedToAbp_8_2.Designer.cs │ │ ├── 20240730131706_UpgradedToAbp_8_2.cs │ │ ├── 20241229142756_UpgradedToAbp_9_0.Designer.cs │ │ ├── 20241229142756_UpgradedToAbp_9_0.cs │ │ ├── 20250331084709_Upgraded_To_Abp_9_1.Designer.cs │ │ ├── 20250331084709_Upgraded_To_Abp_9_1.cs │ │ ├── 20250909144500_Upgraded_To_Abp_9_3.Designer.cs │ │ ├── 20250909144500_Upgraded_To_Abp_9_3.cs │ │ └── IdentityServerHostMigrationsDbContextModelSnapshot.cs │ ├── Pages │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ └── _ViewImports.cshtml │ ├── PrivateMessagingIdentityServerModule.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── abp.resourcemapping.js │ ├── appsettings.json │ ├── gulpfile.js │ ├── package.json │ ├── tempkey.jwk │ ├── tempkey.rsa │ ├── wwwroot │ │ └── libs │ │ │ ├── @fortawesome │ │ │ └── fontawesome-free │ │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ └── v4-shims.css │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ ├── abp │ │ │ ├── core │ │ │ │ ├── abp.css │ │ │ │ └── abp.js │ │ │ ├── jquery │ │ │ │ └── abp.jquery.js │ │ │ ├── luxon │ │ │ │ └── abp.luxon.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-DZ.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-US.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.mr.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-daterangepicker │ │ │ ├── daterangepicker.css │ │ │ └── daterangepicker.js │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.enable.popovers.everywhere.js │ │ │ │ └── bootstrap.enable.tooltips.everywhere.js │ │ │ ├── datatables.net-bs5 │ │ │ ├── css │ │ │ │ └── dataTables.bootstrap5.css │ │ │ └── js │ │ │ │ └── dataTables.bootstrap5.js │ │ │ ├── datatables.net │ │ │ └── js │ │ │ │ └── dataTables.min.js │ │ │ ├── jquery-form │ │ │ └── jquery.form.min.js │ │ │ ├── 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_hi.js │ │ │ │ ├── messages_hi.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 │ │ │ ├── moment │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-ps.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bm.js │ │ │ │ ├── bn-bd.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-il.js │ │ │ │ ├── en-in.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── en-sg.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fil.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── ga.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── gom-deva.js │ │ │ │ ├── gom-latn.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it-ch.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── kn.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku-kmr.js │ │ │ │ ├── ku.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mi.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mn.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── mt.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── oc-lnc.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sd.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── tet.js │ │ │ │ ├── tg.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ug-cn.js │ │ │ │ ├── uk.js │ │ │ │ ├── ur.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── yo.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── zh-hk.js │ │ │ │ ├── zh-mo.js │ │ │ │ └── zh-tw.js │ │ │ └── moment.min.js │ │ │ ├── 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.full.min.js │ │ │ │ └── select2.min.js │ │ │ ├── sweetalert2 │ │ │ ├── sweetalert2.all.js │ │ │ ├── sweetalert2.all.min.js │ │ │ ├── sweetalert2.css │ │ │ ├── sweetalert2.esm.all.js │ │ │ ├── sweetalert2.esm.all.min.js │ │ │ ├── sweetalert2.esm.js │ │ │ ├── sweetalert2.esm.min.js │ │ │ ├── sweetalert2.js │ │ │ ├── sweetalert2.min.css │ │ │ └── sweetalert2.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 │ └── yarn.lock ├── EasyAbp.PrivateMessaging.Web.Host │ ├── Controllers │ │ └── AccountController.cs │ ├── EasyAbp.PrivateMessaging.Web.Host.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Pages │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── PrivateMessagingPage.cs │ │ ├── PrivateMessagingPageModel.cs │ │ └── _ViewImports.cshtml │ ├── PrivateMessagingBrandingProvider.cs │ ├── PrivateMessagingWebAutoMapperProfile.cs │ ├── PrivateMessagingWebHostMenuContributor.cs │ ├── PrivateMessagingWebHostModule.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Views │ │ └── _ViewImports.cshtml │ ├── abp.resourcemapping.js │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── gulpfile.js │ ├── package.json │ ├── wwwroot │ │ └── libs │ │ │ ├── @fortawesome │ │ │ └── fontawesome-free │ │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ └── v4-shims.css │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ ├── abp │ │ │ ├── core │ │ │ │ ├── abp.css │ │ │ │ └── abp.js │ │ │ ├── jquery │ │ │ │ └── abp.jquery.js │ │ │ ├── luxon │ │ │ │ └── abp.luxon.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-DZ.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-US.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.mr.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-daterangepicker │ │ │ ├── daterangepicker.css │ │ │ └── daterangepicker.js │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.enable.popovers.everywhere.js │ │ │ │ └── bootstrap.enable.tooltips.everywhere.js │ │ │ ├── datatables.net-bs5 │ │ │ ├── css │ │ │ │ └── dataTables.bootstrap5.css │ │ │ └── js │ │ │ │ └── dataTables.bootstrap5.js │ │ │ ├── datatables.net │ │ │ └── js │ │ │ │ └── dataTables.min.js │ │ │ ├── jquery-form │ │ │ └── jquery.form.min.js │ │ │ ├── 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_hi.js │ │ │ │ ├── messages_hi.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 │ │ │ ├── moment │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-ps.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bm.js │ │ │ │ ├── bn-bd.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-il.js │ │ │ │ ├── en-in.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── en-sg.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fil.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── ga.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── gom-deva.js │ │ │ │ ├── gom-latn.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it-ch.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── kn.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku-kmr.js │ │ │ │ ├── ku.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mi.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mn.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── mt.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── oc-lnc.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sd.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── tet.js │ │ │ │ ├── tg.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ug-cn.js │ │ │ │ ├── uk.js │ │ │ │ ├── ur.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── yo.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── zh-hk.js │ │ │ │ ├── zh-mo.js │ │ │ │ └── zh-tw.js │ │ │ └── moment.min.js │ │ │ ├── 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.full.min.js │ │ │ │ └── select2.min.js │ │ │ ├── sweetalert2 │ │ │ ├── sweetalert2.all.js │ │ │ ├── sweetalert2.all.min.js │ │ │ ├── sweetalert2.css │ │ │ ├── sweetalert2.esm.all.js │ │ │ ├── sweetalert2.esm.all.min.js │ │ │ ├── sweetalert2.esm.js │ │ │ ├── sweetalert2.esm.min.js │ │ │ ├── sweetalert2.js │ │ │ ├── sweetalert2.min.css │ │ │ └── sweetalert2.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 │ └── yarn.lock └── EasyAbp.PrivateMessaging.Web.Unified │ ├── Dockerfile │ ├── EasyAbp.PrivateMessaging.Web.Unified.csproj │ ├── EntityFrameworkCore │ ├── UnifiedDbContext.cs │ └── UnifiedDbContextFactory.cs │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── IdentityServer │ └── IdentityServerDataSeedContributor.cs │ ├── Migrations │ ├── 20200106080643_Initial.Designer.cs │ ├── 20200106080643_Initial.cs │ ├── 20200312070535_AddedPrivateMessage.Designer.cs │ ├── 20200312070535_AddedPrivateMessage.cs │ ├── 20200312073319_AddedPrivateMessageNotification.Designer.cs │ ├── 20200312073319_AddedPrivateMessageNotification.cs │ ├── 20200312104749_AddedPmUser.Designer.cs │ ├── 20200312104749_AddedPmUser.cs │ ├── 20200312105730_UpdatedPrivateMessageNotification.Designer.cs │ ├── 20200312105730_UpdatedPrivateMessageNotification.cs │ ├── 20200312181609_FixTables.Designer.cs │ ├── 20200312181609_FixTables.cs │ ├── 20200315134506_AddIdentityServer.Designer.cs │ ├── 20200315134506_AddIdentityServer.cs │ ├── 20200702072309_UpgradedAbpTo3_0_0.Designer.cs │ ├── 20200702072309_UpgradedAbpTo3_0_0.cs │ ├── 20200710194242_UpgradedToAbp3_0_3.Designer.cs │ ├── 20200710194242_UpgradedToAbp3_0_3.cs │ ├── 20201021074749_AddedFeatureManagement.Designer.cs │ ├── 20201021074749_AddedFeatureManagement.cs │ ├── 20201228101045_UpgradedToAbp402.Designer.cs │ ├── 20201228101045_UpgradedToAbp402.cs │ ├── 20210625082840_AddedFromUserId.Designer.cs │ ├── 20210625082840_AddedFromUserId.cs │ ├── 20220102122701_UpgradedToAbp5.Designer.cs │ ├── 20220102122701_UpgradedToAbp5.cs │ ├── 20220210064923_UpgradedToAbp5_1_3.Designer.cs │ ├── 20220210064923_UpgradedToAbp5_1_3.cs │ ├── 20230113143157_UpgradedToAbp7.Designer.cs │ ├── 20230113143157_UpgradedToAbp7.cs │ ├── 20230323120046_UpgradedToAbp_7_1.Designer.cs │ ├── 20230323120046_UpgradedToAbp_7_1.cs │ ├── 20230504061106_UpgradedToAbp_7_2.Designer.cs │ ├── 20230504061106_UpgradedToAbp_7_2.cs │ ├── 20231227161535_UpgradedToAbp_8_0.Designer.cs │ ├── 20231227161535_UpgradedToAbp_8_0.cs │ ├── 20240412150040_UpgradedToAbp_8_1.Designer.cs │ ├── 20240412150040_UpgradedToAbp_8_1.cs │ ├── 20240730131617_UpgradedToAbp_8_2.Designer.cs │ ├── 20240730131617_UpgradedToAbp_8_2.cs │ ├── 20241229142752_UpgradedToAbp_9_0.Designer.cs │ ├── 20241229142752_UpgradedToAbp_9_0.cs │ ├── 20250331084733_Upgraded_To_Abp_9_1.Designer.cs │ ├── 20250331084733_Upgraded_To_Abp_9_1.cs │ ├── 20250522070636_AddedCategory.Designer.cs │ ├── 20250522070636_AddedCategory.cs │ ├── 20250909144521_Upgraded_To_Abp_9_3.Designer.cs │ ├── 20250909144521_Upgraded_To_Abp_9_3.cs │ └── UnifiedDbContextModelSnapshot.cs │ ├── Pages │ ├── Index.cshtml │ ├── Index.cshtml.cs │ └── _ViewImports.cshtml │ ├── PrivateMessagingWebUnifiedModule.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── abp.resourcemapping.js │ ├── appsettings.json │ ├── gulpfile.js │ ├── package.json │ ├── tempkey.jwk │ ├── tempkey.rsa │ ├── wwwroot │ └── libs │ │ ├── @fortawesome │ │ └── fontawesome-free │ │ │ ├── css │ │ │ ├── all.css │ │ │ └── v4-shims.css │ │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ │ ├── abp │ │ ├── core │ │ │ ├── abp.css │ │ │ └── abp.js │ │ ├── jquery │ │ │ └── abp.jquery.js │ │ ├── luxon │ │ │ └── abp.luxon.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-DZ.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-US.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.mr.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-daterangepicker │ │ ├── daterangepicker.css │ │ └── daterangepicker.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.enable.popovers.everywhere.js │ │ │ └── bootstrap.enable.tooltips.everywhere.js │ │ ├── datatables.net-bs5 │ │ ├── css │ │ │ └── dataTables.bootstrap5.css │ │ └── js │ │ │ └── dataTables.bootstrap5.js │ │ ├── datatables.net │ │ └── js │ │ │ └── dataTables.min.js │ │ ├── jquery-form │ │ └── jquery.form.min.js │ │ ├── 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_hi.js │ │ │ ├── messages_hi.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 │ │ ├── moment │ │ ├── locale │ │ │ ├── af.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-ps.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bm.js │ │ │ ├── bn-bd.js │ │ │ ├── bn.js │ │ │ ├── bo.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── dv.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-il.js │ │ │ ├── en-in.js │ │ │ ├── en-nz.js │ │ │ ├── en-sg.js │ │ │ ├── eo.js │ │ │ ├── es-do.js │ │ │ ├── es-mx.js │ │ │ ├── es-us.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fil.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── fy.js │ │ │ ├── ga.js │ │ │ ├── gd.js │ │ │ ├── gl.js │ │ │ ├── gom-deva.js │ │ │ ├── gom-latn.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy-am.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it-ch.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── jv.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── km.js │ │ │ ├── kn.js │ │ │ ├── ko.js │ │ │ ├── ku-kmr.js │ │ │ ├── ku.js │ │ │ ├── ky.js │ │ │ ├── lb.js │ │ │ ├── lo.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── me.js │ │ │ ├── mi.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mn.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── mt.js │ │ │ ├── my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl-be.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── oc-lnc.js │ │ │ ├── pa-in.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sd.js │ │ │ ├── se.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── ss.js │ │ │ ├── sv.js │ │ │ ├── sw.js │ │ │ ├── ta.js │ │ │ ├── te.js │ │ │ ├── tet.js │ │ │ ├── tg.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tl-ph.js │ │ │ ├── tlh.js │ │ │ ├── tr.js │ │ │ ├── tzl.js │ │ │ ├── tzm-latn.js │ │ │ ├── tzm.js │ │ │ ├── ug-cn.js │ │ │ ├── uk.js │ │ │ ├── ur.js │ │ │ ├── uz-latn.js │ │ │ ├── uz.js │ │ │ ├── vi.js │ │ │ ├── x-pseudo.js │ │ │ ├── yo.js │ │ │ ├── zh-cn.js │ │ │ ├── zh-hk.js │ │ │ ├── zh-mo.js │ │ │ └── zh-tw.js │ │ └── moment.min.js │ │ ├── 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.full.min.js │ │ │ └── select2.min.js │ │ ├── sweetalert2 │ │ ├── sweetalert2.all.js │ │ ├── sweetalert2.all.min.js │ │ ├── sweetalert2.css │ │ ├── sweetalert2.esm.all.js │ │ ├── sweetalert2.esm.all.min.js │ │ ├── sweetalert2.esm.js │ │ ├── sweetalert2.esm.min.js │ │ ├── sweetalert2.js │ │ ├── sweetalert2.min.css │ │ └── sweetalert2.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 │ └── yarn.lock ├── src ├── EasyAbp.PrivateMessaging.Application.Contracts │ ├── EasyAbp.PrivateMessaging.Application.Contracts.csproj │ ├── EasyAbp │ │ └── PrivateMessaging │ │ │ ├── Authorization │ │ │ ├── PrivateMessagingPermissionDefinitionProvider.cs │ │ │ └── PrivateMessagingPermissions.cs │ │ │ ├── PrivateMessageNotifications │ │ │ ├── Dtos │ │ │ │ ├── GetPrivateMessageNotificationInput.cs │ │ │ │ └── PrivateMessageNotificationDto.cs │ │ │ └── IPrivateMessageNotificationAppService.cs │ │ │ ├── PrivateMessages │ │ │ ├── Dtos │ │ │ │ ├── CreatePrivateMessageByUserIdDto.cs │ │ │ │ ├── CreateUpdatePrivateMessageDto.cs │ │ │ │ ├── GetPrivateMessageListInput.cs │ │ │ │ └── PrivateMessageDto.cs │ │ │ ├── IPrivateMessageAppService.cs │ │ │ └── IPrivateMessageIntegrationService.cs │ │ │ ├── PrivateMessagingApplicationContractsModule.cs │ │ │ ├── PrivateMessagingRemoteServiceConsts.cs │ │ │ └── Users │ │ │ └── Dtos │ │ │ └── PmUserDto.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.PrivateMessaging.Application │ ├── EasyAbp.PrivateMessaging.Application.csproj │ ├── EasyAbp │ │ └── PrivateMessaging │ │ │ ├── PrivateMessageNotifications │ │ │ ├── PrivateMessageNotificationAppService.cs │ │ │ └── PrivateMessageNotificationAuthorizationHandler.cs │ │ │ ├── PrivateMessages │ │ │ ├── PrivateMessageAppService.cs │ │ │ ├── PrivateMessageAuthorizationHandler.cs │ │ │ └── PrivateMessageIntegrationService.cs │ │ │ ├── PrivateMessagingAppService.cs │ │ │ ├── PrivateMessagingApplicationAutoMapperProfile.cs │ │ │ └── PrivateMessagingApplicationModule.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.PrivateMessaging.Domain.Shared │ ├── EasyAbp.PrivateMessaging.Domain.Shared.csproj │ ├── EasyAbp │ │ └── PrivateMessaging │ │ │ ├── Localization │ │ │ ├── PrivateMessagingResource.cs │ │ │ ├── en.json │ │ │ ├── zh-Hans.json │ │ │ └── zh-Hant.json │ │ │ ├── PrivateMessages │ │ │ ├── CreatePrivateMessageInfoModel.cs │ │ │ ├── PrivateMessageConsts.cs │ │ │ ├── PrivateMessageReadEto.cs │ │ │ ├── PrivateMessageSentEto.cs │ │ │ └── SendPrivateMessageEto.cs │ │ │ ├── PrivateMessagingDomainSharedModule.cs │ │ │ └── PrivateMessagingErrorCodes.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.PrivateMessaging.Domain │ ├── EasyAbp.PrivateMessaging.Domain.csproj │ ├── EasyAbp │ │ └── PrivateMessaging │ │ │ ├── PrivateMessageNotifications │ │ │ ├── IPrivateMessageNotificationManager.cs │ │ │ ├── IPrivateMessageNotificationRepository.cs │ │ │ ├── PrivateMessageCreatedEventHandler.cs │ │ │ ├── PrivateMessageNotification.cs │ │ │ └── PrivateMessageNotificationManager.cs │ │ │ ├── PrivateMessages │ │ │ ├── IPrivateMessageReceiverSideManager.cs │ │ │ ├── IPrivateMessageRepository.cs │ │ │ ├── IPrivateMessageSenderSideManager.cs │ │ │ ├── PrivateMessage.cs │ │ │ ├── PrivateMessageReceiverSideManager.cs │ │ │ ├── PrivateMessageSenderSideManager.cs │ │ │ └── SendPrivateMessageEventHandler.cs │ │ │ ├── PrivateMessagingDbProperties.cs │ │ │ ├── PrivateMessagingDomainModule.cs │ │ │ └── Settings │ │ │ ├── PrivateMessagingSettingDefinitionProvider.cs │ │ │ └── PrivateMessagingSettings.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.PrivateMessaging.EntityFrameworkCore │ ├── EasyAbp.PrivateMessaging.EntityFrameworkCore.csproj │ ├── EasyAbp │ │ └── PrivateMessaging │ │ │ ├── EntityFrameworkCore │ │ │ ├── IPrivateMessagingDbContext.cs │ │ │ ├── PrivateMessagingDbContext.cs │ │ │ ├── PrivateMessagingDbContextModelCreatingExtensions.cs │ │ │ ├── PrivateMessagingEntityFrameworkCoreModule.cs │ │ │ └── PrivateMessagingModelBuilderConfigurationOptions.cs │ │ │ ├── PrivateMessageNotifications │ │ │ └── PrivateMessageNotificationRepository.cs │ │ │ └── PrivateMessages │ │ │ └── PrivateMessageRepository.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.PrivateMessaging.HttpApi.Client │ ├── EasyAbp.PrivateMessaging.HttpApi.Client.csproj │ ├── EasyAbp │ │ └── PrivateMessaging │ │ │ └── PrivateMessagingHttpApiClientModule.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.PrivateMessaging.HttpApi │ ├── EasyAbp.PrivateMessaging.HttpApi.csproj │ ├── EasyAbp │ │ └── PrivateMessaging │ │ │ ├── PrivateMessageNotifications │ │ │ └── PrivateMessageNotificationController.cs │ │ │ ├── PrivateMessages │ │ │ ├── PrivateMessageController.cs │ │ │ └── PrivateMessageIntegrationController.cs │ │ │ ├── PrivateMessagingController.cs │ │ │ └── PrivateMessagingHttpApiModule.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.PrivateMessaging.MongoDB │ ├── EasyAbp.PrivateMessaging.MongoDB.csproj │ ├── EasyAbp │ │ └── PrivateMessaging │ │ │ └── MongoDB │ │ │ ├── IPrivateMessagingMongoDbContext.cs │ │ │ ├── PrivateMessagingMongoDbContext.cs │ │ │ ├── PrivateMessagingMongoDbContextExtensions.cs │ │ │ ├── PrivateMessagingMongoDbModule.cs │ │ │ └── PrivateMessagingMongoModelBuilderConfigurationOptions.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd └── EasyAbp.PrivateMessaging.Web │ ├── EasyAbp.PrivateMessaging.Web.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Pages │ ├── PrivateMessaging │ │ ├── Components │ │ │ └── PmNotification │ │ │ │ ├── Default.cshtml │ │ │ │ ├── Default.css │ │ │ │ ├── Default.js │ │ │ │ ├── PmNotificationScriptBundleContributor.cs │ │ │ │ ├── PmNotificationStyleBundleContributor.cs │ │ │ │ └── PmNotificationViewComponent.cs │ │ ├── PrivateMessages │ │ │ └── PrivateMessage │ │ │ │ ├── Common.css │ │ │ │ ├── CreateModal.cshtml │ │ │ │ ├── CreateModal.cshtml.cs │ │ │ │ ├── Detail.js │ │ │ │ ├── DetailModal.cshtml │ │ │ │ ├── DetailModal.cshtml.cs │ │ │ │ ├── Inbox.cshtml │ │ │ │ ├── Inbox.cshtml.cs │ │ │ │ ├── Inbox.js │ │ │ │ ├── InfoModels │ │ │ │ ├── CreatePrivateMessageInfoModel.cs │ │ │ │ └── PrivateMessageInfoModel.cs │ │ │ │ ├── Outbox.cshtml │ │ │ │ ├── Outbox.cshtml.cs │ │ │ │ └── Outbox.js │ │ └── _ViewImports.cshtml │ └── PrivateMessagingPageModel.cs │ ├── PrivateMessagingToolbarContributor.cs │ ├── PrivateMessagingWebAutoMapperProfile.cs │ ├── PrivateMessagingWebModule.cs │ └── Properties │ └── launchSettings.json └── test ├── EasyAbp.PrivateMessaging.Application.Tests ├── EasyAbp.PrivateMessaging.Application.Tests.csproj ├── FakeExternalUserLookupServiceProvider.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── PrivateMessageNotifications │ └── PrivateMessageNotificationAppServiceTests.cs ├── PrivateMessages │ └── PrivateMessageAppServiceTests.cs ├── PrivateMessagingApplicationTestBase.cs └── PrivateMessagingApplicationTestModule.cs ├── EasyAbp.PrivateMessaging.Domain.Tests ├── EasyAbp.PrivateMessaging.Domain.Tests.csproj ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── PrivateMessageNotifications │ └── PrivateMessageNotificationDomainTests.cs ├── PrivateMessages │ └── PrivateMessageDomainTests.cs ├── PrivateMessagingDomainTestBase.cs ├── PrivateMessagingDomainTestModule.cs └── Samples │ └── SampleManager_Tests.cs ├── EasyAbp.PrivateMessaging.EntityFrameworkCore.Tests ├── EasyAbp.PrivateMessaging.EntityFrameworkCore.Tests.csproj ├── EntityFrameworkCore │ ├── PrivateMessageNotifications │ │ └── PrivateMessageNotificationRepositoryTests.cs │ ├── PrivateMessages │ │ └── PrivateMessageRepositoryTests.cs │ ├── PrivateMessagingEntityFrameworkCoreTestBase.cs │ ├── PrivateMessagingEntityFrameworkCoreTestModule.cs │ └── Samples │ │ └── SampleRepository_Tests.cs ├── FodyWeavers.xml └── FodyWeavers.xsd ├── EasyAbp.PrivateMessaging.HttpApi.Client.ConsoleTestApp ├── ClientDemoService.cs ├── ConsoleTestAppHostedService.cs ├── EasyAbp.PrivateMessaging.HttpApi.Client.ConsoleTestApp.csproj ├── PrivateMessagingConsoleApiClientModule.cs ├── Program.cs └── appsettings.json ├── EasyAbp.PrivateMessaging.MongoDB.Tests ├── EasyAbp.PrivateMessaging.MongoDB.Tests.csproj ├── FodyWeavers.xml ├── FodyWeavers.xsd └── MongoDB │ ├── MongoDbFixture.cs │ ├── MongoTestCollection.cs │ ├── PrivateMessagingMongoDbTestBase.cs │ ├── PrivateMessagingMongoDbTestModule.cs │ └── Samples │ └── SampleRepository_Tests.cs └── EasyAbp.PrivateMessaging.TestBase ├── EasyAbp.PrivateMessaging.TestBase.csproj ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── PrivateMessagingDataSeedContributor.cs ├── PrivateMessagingTestBase.cs ├── PrivateMessagingTestBaseModule.cs ├── Samples └── SampleRepository_Tests.cs └── Security └── FakeCurrentPrincipalAccessor.cs /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | **/wwwroot/libs/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /EasyAbp.PrivateMessaging.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/EasyAbp.PrivateMessaging.sln -------------------------------------------------------------------------------- /EasyAbp.PrivateMessaging.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/EasyAbp.PrivateMessaging.sln.DotSettings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/LICENSE -------------------------------------------------------------------------------- /common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/common.props -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/images/Inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/docs/images/Inbox.png -------------------------------------------------------------------------------- /docs/images/Notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/docs/images/Notifications.png -------------------------------------------------------------------------------- /docs/images/ReadMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/docs/images/ReadMessage.png -------------------------------------------------------------------------------- /docs/images/WriteMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/docs/images/WriteMessage.png -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Host.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Host.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Host.Shared/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Host.Shared/FodyWeavers.xsd -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Host.Shared/MultiTenancy/MultiTenancyConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Host.Shared/MultiTenancy/MultiTenancyConsts.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.HttpApi.Host/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.HttpApi.Host/Controllers/HomeController.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.HttpApi.Host/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.HttpApi.Host/Dockerfile -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.HttpApi.Host/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.HttpApi.Host/FodyWeavers.xml -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.HttpApi.Host/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.HttpApi.Host/FodyWeavers.xsd -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.HttpApi.Host/Migrations/20200315130544_Init..cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.HttpApi.Host/Migrations/20200315130544_Init..cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.HttpApi.Host/PrivateMessagingHttpApiHostModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.HttpApi.Host/PrivateMessagingHttpApiHostModule.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.HttpApi.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.HttpApi.Host/Program.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.HttpApi.Host/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.HttpApi.Host/Properties/launchSettings.json -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.HttpApi.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.HttpApi.Host/appsettings.json -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.HttpApi.Host/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.HttpApi.Host/yarn.lock -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/Dockerfile -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/Pages/Index.cshtml -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/Program.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/abp.resourcemapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/abp.resourcemapping.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/appsettings.json -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/gulpfile.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/package.json -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/tempkey.jwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/tempkey.jwk -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/tempkey.rsa -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/abp/core/abp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/abp/core/abp.css -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/abp/core/abp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/abp/core/abp.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/jquery/jquery.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/lodash/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/lodash/lodash.min.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/luxon/luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/luxon/luxon.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/luxon/luxon.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/luxon/luxon.js.map -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/luxon/luxon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/luxon/luxon.min.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/af.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ar.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/az.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/be.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/bg.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/bm.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/bn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/bo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/br.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/bs.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ca.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/cs.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/cv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/cy.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/da.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/de.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/dv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/el.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/eo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/es.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/et.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/eu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/fa.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/fi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/fil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/fil.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/fo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/fr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/fy.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ga.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/gd.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/gl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/gu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/he.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/hi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/hr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/hu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/id.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/is.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/it.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ja.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/jv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ka.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/kk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/km.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/kn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ko.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ku.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ky.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/lb.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/lo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/lt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/lv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/me.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/mi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/mi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/mk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ml.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/mn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/mr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ms.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/mt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/my.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/nb.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ne.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/nl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/nn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/pl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/pt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ro.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ru.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/sd.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/se.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/si.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/sk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/sl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/sq.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/sr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ss.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/sv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/sw.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ta.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/te.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/tet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/tet.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/tg.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/th.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/tk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/tlh.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/tr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/tzl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/tzl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/tzm.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/uk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/ur.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/uz.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/vi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/locale/yo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/moment/moment.min.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/af.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ar.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/az.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/bg.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/bn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/bs.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ca.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/cs.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/da.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/de.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/el.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/en.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/es.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/et.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/eu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/fa.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/fi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/fr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/gl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/he.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/hi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/hr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/hu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/hy.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/id.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/is.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/it.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ja.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ka.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/km.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ko.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/lt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/lv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/mk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ms.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/nb.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ne.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/nl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/pl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ps.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/pt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ro.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/ru.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/sk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/sl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/sq.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/sr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/sv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/th.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/tk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/tr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/uk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/wwwroot/libs/select2/js/i18n/vi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.IdentityServer/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.IdentityServer/yarn.lock -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/Controllers/AccountController.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/EasyAbp.PrivateMessaging.Web.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/EasyAbp.PrivateMessaging.Web.Host.csproj -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/FodyWeavers.xml -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/FodyWeavers.xsd -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/Pages/Index.cshtml -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/Pages/PrivateMessagingPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/Pages/PrivateMessagingPage.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/Pages/PrivateMessagingPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/Pages/PrivateMessagingPageModel.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/PrivateMessagingBrandingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/PrivateMessagingBrandingProvider.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/PrivateMessagingWebAutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/PrivateMessagingWebAutoMapperProfile.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/PrivateMessagingWebHostModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/PrivateMessagingWebHostModule.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/Program.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/Properties/launchSettings.json -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/abp.resourcemapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/abp.resourcemapping.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/appsettings.json -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/gulpfile.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/package.json -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/abp/core/abp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/abp/core/abp.css -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/abp/core/abp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/abp/core/abp.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/abp/jquery/abp.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/abp/jquery/abp.jquery.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/abp/luxon/abp.luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/abp/luxon/abp.luxon.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/abp/utils/abp-utils.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/abp/utils/abp-utils.umd.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/jquery/jquery.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/lodash/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/lodash/lodash.min.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/luxon/luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/luxon/luxon.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/luxon/luxon.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/luxon/luxon.js.map -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/luxon/luxon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/luxon/luxon.min.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/luxon/luxon.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/luxon/luxon.min.js.map -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/af.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar-dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar-dz.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar-kw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar-kw.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar-ly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar-ly.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar-ma.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar-ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar-ps.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar-sa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar-sa.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar-tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar-tn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ar.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/az.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/be.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/bg.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/bm.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/bn-bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/bn-bd.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/bn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/bo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/br.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/bs.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ca.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/cs.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/cv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/cy.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/da.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/de-at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/de-at.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/de-ch.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/de.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/dv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/el.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-au.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-ca.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-gb.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-ie.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-il.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-il.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-in.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-nz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-nz.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-sg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/en-sg.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/eo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/es-do.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/es-do.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/es-mx.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/es-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/es-us.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/es.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/et.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/eu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fa.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fil.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fr-ca.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fr-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fr-ch.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/fy.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ga.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/gd.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/gl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/gom-deva.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/gom-deva.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/gom-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/gom-latn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/gu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/he.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/hi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/hr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/hu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/hy-am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/hy-am.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/id.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/is.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/it-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/it-ch.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/it.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ja.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/jv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ka.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/kk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/km.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/kn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ko.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ku-kmr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ku-kmr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ku.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ky.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/lb.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/lo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/lt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/lv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/me.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/mi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/mi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/mk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ml.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/mn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/mr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ms-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ms-my.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ms.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/mt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/my.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/nb.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ne.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/nl-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/nl-be.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/nl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/nn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/oc-lnc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/oc-lnc.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/pa-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/pa-in.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/pl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/pt-br.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/pt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ro.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ru.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sd.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/se.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/si.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sq.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sr-cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sr-cyrl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ss.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/sw.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ta.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/te.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tet.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tg.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/th.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tl-ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tl-ph.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tlh.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tzl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tzl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tzm-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tzm-latn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/tzm.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ug-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ug-cn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/uk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/ur.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/uz-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/uz-latn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/uz.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/vi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/x-pseudo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/x-pseudo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/yo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/zh-cn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/zh-hk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/zh-hk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/zh-mo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/zh-mo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/locale/zh-tw.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/moment/moment.min.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/css/select2.min.css -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/af.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ar.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/az.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/bg.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/bn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/bs.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ca.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/cs.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/da.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/de.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/dsb.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/el.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/en.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/es.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/et.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/eu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/fa.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/fi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/fr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/gl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/he.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/hi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/hr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/hsb.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/hu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/hy.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/id.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/is.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/it.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ja.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ka.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/km.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ko.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/lt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/lv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/mk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ms.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/nb.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ne.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/nl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/pl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ps.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/pt-BR.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/pt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ro.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/ru.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/sk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/sl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/sq.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/sr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/sv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/th.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/tk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/tr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/uk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/vi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/zh-CN.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/i18n/zh-TW.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/select2/js/select2.min.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/sweetalert2/sweetalert2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/sweetalert2/sweetalert2.css -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/sweetalert2/sweetalert2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/sweetalert2/sweetalert2.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/timeago/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/timeago/jquery.timeago.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/timeago/locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/wwwroot/libs/timeago/locales/README.md -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Host/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Host/yarn.lock -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/Dockerfile -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/FodyWeavers.xml -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/FodyWeavers.xsd -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/Migrations/20200106080643_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/Migrations/20200106080643_Initial.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/Pages/Index.cshtml -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/PrivateMessagingWebUnifiedModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/PrivateMessagingWebUnifiedModule.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/Program.cs -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/Properties/launchSettings.json -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/abp.resourcemapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/abp.resourcemapping.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/appsettings.json -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/gulpfile.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/package.json -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/tempkey.jwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/tempkey.jwk -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/tempkey.rsa -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/abp/core/abp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/abp/core/abp.css -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/abp/core/abp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/abp/core/abp.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/abp/jquery/abp.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/abp/jquery/abp.jquery.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/abp/luxon/abp.luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/abp/luxon/abp.luxon.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/jquery/jquery.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/lodash/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/lodash/lodash.min.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/luxon/luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/luxon/luxon.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/luxon/luxon.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/luxon/luxon.js.map -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/luxon/luxon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/luxon/luxon.min.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/luxon/luxon.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/luxon/luxon.min.js.map -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/af.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar-dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar-dz.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar-kw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar-kw.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar-ly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar-ly.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar-ma.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar-ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar-ps.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar-sa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar-sa.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar-tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar-tn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ar.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/az.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/be.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/bg.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/bm.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/bn-bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/bn-bd.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/bn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/bo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/br.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/bs.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ca.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/cs.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/cv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/cy.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/da.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/de-at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/de-at.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/de.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/dv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/el.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/eo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/es.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/et.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/eu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/fa.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/fi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/fil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/fil.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/fo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/fr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/fy.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ga.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/gd.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/gl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/gu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/he.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/hi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/hr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/hu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/id.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/is.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/it.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ja.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/jv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ka.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/kk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/km.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/kn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ko.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ku.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ky.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/lb.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/lo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/lt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/lv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/me.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/mi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/mi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/mk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ml.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/mn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/mr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ms.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/mt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/my.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/nb.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ne.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/nl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/nn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/pl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/pt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ro.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ru.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/sd.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/se.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/si.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/sk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/sl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/sq.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/sr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ss.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/sv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/sw.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ta.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/te.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/tet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/tet.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/tg.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/th.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/tk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/tlh.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/tr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/tzl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/tzl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/tzm.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/uk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/ur.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/uz.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/vi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/locale/yo.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/moment/moment.min.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/af.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ar.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/az.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/bg.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/bn.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/bs.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ca.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/cs.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/da.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/de.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/el.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/en.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/es.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/et.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/eu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/fa.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/fi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/fr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/gl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/he.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/hi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/hr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/hu.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/hy.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/id.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/is.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/it.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ja.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ka.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/km.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ko.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/lt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/lv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/mk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ms.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/nb.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ne.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/nl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/pl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ps.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/pt.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ro.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/ru.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/sk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/sl.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/sq.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/sr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/sv.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/th.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/tk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/tr.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/uk.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/wwwroot/libs/select2/js/i18n/vi.js -------------------------------------------------------------------------------- /host/EasyAbp.PrivateMessaging.Web.Unified/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/host/EasyAbp.PrivateMessaging.Web.Unified/yarn.lock -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Application.Contracts/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Application.Contracts/FodyWeavers.xml -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Application.Contracts/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Application.Contracts/FodyWeavers.xsd -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Application/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Application/FodyWeavers.xml -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Application/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Application/FodyWeavers.xsd -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Domain.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Domain.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Domain.Shared/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Domain.Shared/FodyWeavers.xsd -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Domain/EasyAbp.PrivateMessaging.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Domain/EasyAbp.PrivateMessaging.Domain.csproj -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Domain/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Domain/FodyWeavers.xml -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Domain/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Domain/FodyWeavers.xsd -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.EntityFrameworkCore/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.EntityFrameworkCore/FodyWeavers.xml -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.EntityFrameworkCore/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.EntityFrameworkCore/FodyWeavers.xsd -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.HttpApi.Client/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.HttpApi.Client/FodyWeavers.xml -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.HttpApi.Client/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.HttpApi.Client/FodyWeavers.xsd -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.HttpApi/EasyAbp.PrivateMessaging.HttpApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.HttpApi/EasyAbp.PrivateMessaging.HttpApi.csproj -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.HttpApi/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.HttpApi/FodyWeavers.xml -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.HttpApi/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.HttpApi/FodyWeavers.xsd -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.MongoDB/EasyAbp.PrivateMessaging.MongoDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.MongoDB/EasyAbp.PrivateMessaging.MongoDB.csproj -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.MongoDB/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.MongoDB/FodyWeavers.xml -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.MongoDB/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.MongoDB/FodyWeavers.xsd -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Web/EasyAbp.PrivateMessaging.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Web/EasyAbp.PrivateMessaging.Web.csproj -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Web/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Web/FodyWeavers.xml -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Web/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Web/FodyWeavers.xsd -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Web/Pages/PrivateMessaging/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Web/Pages/PrivateMessaging/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Web/Pages/PrivateMessagingPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Web/Pages/PrivateMessagingPageModel.cs -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Web/PrivateMessagingToolbarContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Web/PrivateMessagingToolbarContributor.cs -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Web/PrivateMessagingWebAutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Web/PrivateMessagingWebAutoMapperProfile.cs -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Web/PrivateMessagingWebModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Web/PrivateMessagingWebModule.cs -------------------------------------------------------------------------------- /src/EasyAbp.PrivateMessaging.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/src/EasyAbp.PrivateMessaging.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.Application.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.Application.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.Application.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.Application.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.Domain.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.Domain.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.Domain.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.Domain.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.Domain.Tests/PrivateMessagingDomainTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.Domain.Tests/PrivateMessagingDomainTestBase.cs -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.Domain.Tests/Samples/SampleManager_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.Domain.Tests/Samples/SampleManager_Tests.cs -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.EntityFrameworkCore.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.EntityFrameworkCore.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.EntityFrameworkCore.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.EntityFrameworkCore.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.HttpApi.Client.ConsoleTestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.HttpApi.Client.ConsoleTestApp/Program.cs -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.HttpApi.Client.ConsoleTestApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.HttpApi.Client.ConsoleTestApp/appsettings.json -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.MongoDB.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.MongoDB.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.MongoDB.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.MongoDB.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.MongoDB.Tests/MongoDB/MongoDbFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.MongoDB.Tests/MongoDB/MongoDbFixture.cs -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.MongoDB.Tests/MongoDB/MongoTestCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.MongoDB.Tests/MongoDB/MongoTestCollection.cs -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.MongoDB.Tests/MongoDB/Samples/SampleRepository_Tests.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.TestBase/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.TestBase/FodyWeavers.xml -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.TestBase/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.TestBase/FodyWeavers.xsd -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.TestBase/PrivateMessagingTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.TestBase/PrivateMessagingTestBase.cs -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.TestBase/PrivateMessagingTestBaseModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.TestBase/PrivateMessagingTestBaseModule.cs -------------------------------------------------------------------------------- /test/EasyAbp.PrivateMessaging.TestBase/Samples/SampleRepository_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/PrivateMessaging/HEAD/test/EasyAbp.PrivateMessaging.TestBase/Samples/SampleRepository_Tests.cs --------------------------------------------------------------------------------