├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml ├── mergeable.yml └── workflows │ └── Build.yml ├── .gitignore ├── .nuke ├── build.schema.json └── parameters.json ├── Eraware_Dnn_Templates.sln ├── Eraware_Dnn_Templates ├── Eraware.ico ├── Eraware_Dnn_Templates.csproj ├── LICENSE ├── Properties │ └── AssemblyInfo.cs ├── SetupWizard.xaml ├── SetupWizard.xaml.cs ├── SimpleBinding.cs ├── ViewModels │ ├── ModuleSettingsVM.cs │ └── ObservableObject.cs ├── WizardImplementation.cs ├── key.snk └── source.extension.vsixmanifest ├── LICENSE ├── Module ├── Eraware.ico ├── IntegrationTests │ ├── App.Config │ ├── Controllers │ │ ├── ItemControllerTests.cs │ │ └── ServiceRouteMapperTests.cs │ ├── FakeDataContext.cs │ ├── IntegrationTests.vstemplate │ ├── ProjectTemplate.csproj │ └── Startup.cs ├── Module.csproj ├── UnitTests │ ├── App.config │ ├── Common │ │ ├── Extensions │ │ │ └── IQueryableExtensionsTests.cs │ │ └── GlobalsTests.cs │ ├── Controllers │ │ ├── ItemControllerTests.cs │ │ ├── LocalizationControllerTests.cs │ │ ├── ModuleApiControllerTests.cs │ │ └── ServiceRouteMapperTests.cs │ ├── Data │ │ ├── Entities │ │ │ └── ItemTests.cs │ │ └── Repositories │ │ │ └── GenericRepositoryTests.cs │ ├── FakeDataContext.cs │ ├── ProjectTemplate.csproj │ ├── Providers │ │ └── DateTimeProviderTests.cs │ ├── Services │ │ └── Items │ │ │ ├── CreateItemDtoValidatorTests.cs │ │ │ ├── ItemServiceTests.cs │ │ │ └── UpdateItemDtoValidatorTests.cs │ ├── Startup.cs │ ├── StartupTests.cs │ └── UnitTests.vstemplate ├── build │ ├── .editorconfig │ ├── Build.cs │ ├── Configuration.cs │ ├── Helpers.cs │ ├── ProjectTemplate.csproj │ ├── Properties │ │ └── launchSettings.json │ ├── _build.csproj.DotSettings │ ├── build.vstemplate │ └── docs │ │ ├── articles │ │ ├── git.html │ │ └── intro.html │ │ └── images │ │ ├── Package.gif │ │ ├── create-beta-release.gif │ │ ├── create-develop-branch.gif │ │ ├── create-pull-request.gif │ │ ├── create-release.gif │ │ ├── initial-commit.gif │ │ ├── install-module.gif │ │ └── setup-git-docs.gif ├── module.web │ ├── .editorconfig │ ├── .gitignore │ ├── .hintrc │ ├── LICENSE │ ├── ProjectTemplate.njsproj │ ├── api-extractor.json │ ├── eslint.config.ts │ ├── module-icon.ico │ ├── module.web.vstemplate │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── components.d.ts │ │ ├── components │ │ │ ├── my-component │ │ │ │ ├── my-component.scss │ │ │ │ ├── my-component.tsx │ │ │ │ ├── readme.md │ │ │ │ └── usage │ │ │ │ │ ├── dnn.md │ │ │ │ │ └── javascript.md │ │ │ ├── my-edit │ │ │ │ ├── my-edit.scss │ │ │ │ └── my-edit.tsx │ │ │ ├── my-item-details │ │ │ │ ├── my-item-details.scss │ │ │ │ └── my-item-details.tsx │ │ │ └── my-items-list │ │ │ │ ├── my-items-list.scss │ │ │ │ └── my-items-list.tsx │ │ ├── index.html │ │ ├── index.js │ │ ├── index.js.map │ │ ├── index.ts │ │ ├── services │ │ │ ├── alert-error.ts │ │ │ ├── client-base.ts │ │ │ └── services.ts │ │ └── store │ │ │ └── state.ts │ ├── stencil.config.ts │ └── tsconfig.json ├── module │ ├── .editorconfig │ ├── .github │ │ ├── dependabot.yml │ │ └── mergeable.yml │ ├── .gitignore │ ├── .nuke │ │ ├── build.schema.json │ │ └── parameters.json │ ├── App.Config │ ├── Common │ │ ├── Extensions │ │ │ └── IQueryableExtensions.cs │ │ └── Globals.cs │ ├── Controllers │ │ ├── ItemController.cs │ │ ├── LocalizationController.cs │ │ ├── ModuleApiController.cs │ │ └── ServiceRouteMapper.cs │ ├── Data │ │ ├── Entities │ │ │ ├── BaseEntity.cs │ │ │ ├── IEntity.cs │ │ │ └── Item.cs │ │ ├── ModuleDbContext.cs │ │ └── Repositories │ │ │ ├── IItemRepository.cs │ │ │ ├── IRepository.cs │ │ │ ├── ItemRepository.cs │ │ │ ├── PagedList{T}.cs │ │ │ └── Repository.cs │ ├── LICENSE │ ├── Module.vstemplate │ ├── ProjectTemplate.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Providers │ │ ├── DateTimeProvider.cs │ │ └── IDateTimeProvider.cs │ ├── README.md │ ├── ReleaseNotes.html │ ├── Services │ │ ├── Items │ │ │ ├── CreateItemDTO.cs │ │ │ ├── CreateItemDtoValidator.cs │ │ │ ├── GetItemsPageDTO.cs │ │ │ ├── IItemService.cs │ │ │ ├── ItemService.cs │ │ │ ├── ItemViewModel.cs │ │ │ ├── ItemsPageViewModel.cs │ │ │ ├── UpdateItemDTO.cs │ │ │ └── UpdateItemDtoValidator.cs │ │ └── Localization │ │ │ ├── ILocalizationService.cs │ │ │ ├── LocalizationService.cs │ │ │ └── LocalizationViewModel.cs │ ├── Startup.cs │ ├── build.cmd │ ├── build.ps1 │ ├── build.sh │ ├── docfx_project │ │ ├── .gitignore │ │ ├── articles │ │ │ ├── git.md │ │ │ ├── intro.md │ │ │ ├── project-architecture.md │ │ │ └── toc.yml │ │ ├── docfx.json │ │ ├── images │ │ │ ├── Package.gif │ │ │ ├── Push-Selection.png │ │ │ ├── create-beta-release.gif │ │ │ ├── create-develop-branch.gif │ │ │ ├── create-pull-request.gif │ │ │ ├── create-release.gif │ │ │ ├── initial-commit.gif │ │ │ ├── install-module.gif │ │ │ └── setup-git-docs.gif │ │ ├── index.md │ │ ├── package.json │ │ ├── rest │ │ │ ├── rest-api.md │ │ │ └── toc.yml │ │ ├── templates │ │ │ └── mytemplate │ │ │ │ ├── common.js │ │ │ │ ├── layout │ │ │ │ └── _master.tmpl │ │ │ │ ├── partials │ │ │ │ ├── footer.tmpl.partial │ │ │ │ └── scripts.tmpl.partial │ │ │ │ └── styles │ │ │ │ ├── main.css │ │ │ │ ├── main.js │ │ │ │ ├── mermaid.min.js │ │ │ │ ├── mermaid.min.js.map │ │ │ │ └── toggle-theme.js │ │ └── toc.yml │ ├── global.json │ ├── manifest.dnn │ ├── module-icon.ico │ ├── resources │ │ ├── App_LocalResources │ │ │ ├── ModelValidation.resx │ │ │ └── UI.resx │ │ ├── images │ │ │ └── module-icon.png │ │ └── views │ │ │ └── view.html │ └── stylecop.json └── root.vstemplate ├── PersonaBarModule ├── AssemblyInfo.cs ├── Eraware.ico ├── Globals.cs ├── PersonaBarModule.csproj ├── ProjectTemplate.csproj ├── Properties │ └── AssemblyInfo.cs ├── UnitTests │ ├── Common │ │ └── GlobalsTests.cs │ ├── Controllers │ │ ├── EchoControllerTests.cs │ │ ├── LocalizationControllerTests.cs │ │ └── ServiceRouteMapperTests.cs │ ├── MenuControllers │ │ └── MyPersonaBarModuleMenuControllerTests.cs │ ├── ProjectTemplate.csproj │ ├── Providers │ │ └── DateTimeProviderTests.cs │ ├── Services │ │ └── EchoServiceTests.cs │ ├── StartupTests.cs │ └── UnitTests.vstemplate ├── _build │ ├── .editorconfig │ ├── Build.cs │ ├── Configuration.cs │ ├── Helpers.cs │ ├── ProjectTemplate.csproj │ ├── Properties │ │ └── launchSettings.json │ ├── _build.csproj.DotSettings │ └── build.vstemplate ├── module.web │ ├── .editorconfig │ ├── .gitignore │ ├── .hintrc │ ├── LICENSE │ ├── ProjectTemplate.njsproj │ ├── api-extractor.json │ ├── eslint.config.ts │ ├── module-icon.ico │ ├── module.web.vstemplate │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── components.d.ts │ │ ├── components │ │ │ └── my-app-root │ │ │ │ ├── my-app-root.scss │ │ │ │ └── my-app-root.tsx │ │ ├── dnn │ │ │ ├── MyPersonaBarModule.ts │ │ │ ├── tsconfig.json │ │ │ ├── types.d.ts │ │ │ └── types │ │ │ │ ├── IDnnPersonaBarCustomValidator.ts │ │ │ │ ├── IDnnPersonaBarLoadPanelParams.ts │ │ │ │ ├── IDnnPersonaBarMenuItem.ts │ │ │ │ ├── IDnnPersonaBarMenuSettings.ts │ │ │ │ ├── IDnnPersonaBarMenuStructure.ts │ │ │ │ ├── IDnnPersonaBarMenuStructureItem.ts │ │ │ │ ├── IDnnPersonaBarNotificationOptions.ts │ │ │ │ ├── IDnnPersonaBarPersistant.ts │ │ │ │ ├── IDnnPersonaBarPersistantData.ts │ │ │ │ ├── IDnnPersonaBarServicesFramework.ts │ │ │ │ ├── IDnnPersonaBarUtilities.ts │ │ │ │ └── IDnnPersonaBarValidator.ts │ │ ├── index.html │ │ ├── index.ts │ │ └── services │ │ │ ├── alert-error.ts │ │ │ ├── client-base.ts │ │ │ └── services.ts │ ├── stencil.config.ts │ └── tsconfig.json ├── module │ ├── .editorconfig │ ├── .github │ │ ├── dependabot.yml │ │ └── mergeable.yml │ ├── .gitignore │ ├── .nuke │ │ ├── build.schema.json │ │ └── parameters.json │ ├── Common │ │ └── Globals.cs │ ├── Controllers │ │ ├── EchoController.cs │ │ ├── LocalizationController.cs │ │ └── ServiceRouteMapper.cs │ ├── LICENSE │ ├── MenuControllers │ │ └── MyPersonaBarModuleMenuController.cs │ ├── Module.vstemplate │ ├── ProjectTemplate.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Providers │ │ ├── DateTimeProvider.cs │ │ └── IDateTimeProvider.cs │ ├── README.md │ ├── ReleaseNotes.html │ ├── Services │ │ ├── EchoService │ │ │ ├── EchoDto.cs │ │ │ ├── EchoService.cs │ │ │ ├── EchoViewModel.cs │ │ │ └── IEchoService.cs │ │ └── Localization │ │ │ ├── ILocalizationService.cs │ │ │ ├── LocalizationService.cs │ │ │ └── LocalizationViewModel.cs │ ├── Startup.cs │ ├── app.config │ ├── build.cmd │ ├── build.ps1 │ ├── build.sh │ ├── global.json │ ├── manifest.dnn │ ├── module-icon.ico │ ├── module.generated.sln │ ├── resources │ │ ├── App_LocalResources │ │ │ └── MyPersonaBarModule.resx │ │ ├── MyPersonaBarModule.html │ │ ├── css │ │ │ └── MyPersonaBarModule.css │ │ └── images │ │ │ └── module-icon.png │ └── stylecop.json └── root.vstemplate ├── README.md └── global.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [valadas] 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/mergeable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/.github/mergeable.yml -------------------------------------------------------------------------------- /.github/workflows/Build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/.github/workflows/Build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuke/build.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/.nuke/build.schema.json -------------------------------------------------------------------------------- /.nuke/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/.nuke/parameters.json -------------------------------------------------------------------------------- /Eraware_Dnn_Templates.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Eraware_Dnn_Templates.sln -------------------------------------------------------------------------------- /Eraware_Dnn_Templates/Eraware.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Eraware_Dnn_Templates/Eraware.ico -------------------------------------------------------------------------------- /Eraware_Dnn_Templates/Eraware_Dnn_Templates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Eraware_Dnn_Templates/Eraware_Dnn_Templates.csproj -------------------------------------------------------------------------------- /Eraware_Dnn_Templates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Eraware_Dnn_Templates/LICENSE -------------------------------------------------------------------------------- /Eraware_Dnn_Templates/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Eraware_Dnn_Templates/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Eraware_Dnn_Templates/SetupWizard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Eraware_Dnn_Templates/SetupWizard.xaml -------------------------------------------------------------------------------- /Eraware_Dnn_Templates/SetupWizard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Eraware_Dnn_Templates/SetupWizard.xaml.cs -------------------------------------------------------------------------------- /Eraware_Dnn_Templates/SimpleBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Eraware_Dnn_Templates/SimpleBinding.cs -------------------------------------------------------------------------------- /Eraware_Dnn_Templates/ViewModels/ModuleSettingsVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Eraware_Dnn_Templates/ViewModels/ModuleSettingsVM.cs -------------------------------------------------------------------------------- /Eraware_Dnn_Templates/ViewModels/ObservableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Eraware_Dnn_Templates/ViewModels/ObservableObject.cs -------------------------------------------------------------------------------- /Eraware_Dnn_Templates/WizardImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Eraware_Dnn_Templates/WizardImplementation.cs -------------------------------------------------------------------------------- /Eraware_Dnn_Templates/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Eraware_Dnn_Templates/key.snk -------------------------------------------------------------------------------- /Eraware_Dnn_Templates/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Eraware_Dnn_Templates/source.extension.vsixmanifest -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/LICENSE -------------------------------------------------------------------------------- /Module/Eraware.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/Eraware.ico -------------------------------------------------------------------------------- /Module/IntegrationTests/App.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/IntegrationTests/App.Config -------------------------------------------------------------------------------- /Module/IntegrationTests/Controllers/ItemControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/IntegrationTests/Controllers/ItemControllerTests.cs -------------------------------------------------------------------------------- /Module/IntegrationTests/Controllers/ServiceRouteMapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/IntegrationTests/Controllers/ServiceRouteMapperTests.cs -------------------------------------------------------------------------------- /Module/IntegrationTests/FakeDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/IntegrationTests/FakeDataContext.cs -------------------------------------------------------------------------------- /Module/IntegrationTests/IntegrationTests.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/IntegrationTests/IntegrationTests.vstemplate -------------------------------------------------------------------------------- /Module/IntegrationTests/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/IntegrationTests/ProjectTemplate.csproj -------------------------------------------------------------------------------- /Module/IntegrationTests/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/IntegrationTests/Startup.cs -------------------------------------------------------------------------------- /Module/Module.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/Module.csproj -------------------------------------------------------------------------------- /Module/UnitTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/App.config -------------------------------------------------------------------------------- /Module/UnitTests/Common/Extensions/IQueryableExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/Common/Extensions/IQueryableExtensionsTests.cs -------------------------------------------------------------------------------- /Module/UnitTests/Common/GlobalsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/Common/GlobalsTests.cs -------------------------------------------------------------------------------- /Module/UnitTests/Controllers/ItemControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/Controllers/ItemControllerTests.cs -------------------------------------------------------------------------------- /Module/UnitTests/Controllers/LocalizationControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/Controllers/LocalizationControllerTests.cs -------------------------------------------------------------------------------- /Module/UnitTests/Controllers/ModuleApiControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/Controllers/ModuleApiControllerTests.cs -------------------------------------------------------------------------------- /Module/UnitTests/Controllers/ServiceRouteMapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/Controllers/ServiceRouteMapperTests.cs -------------------------------------------------------------------------------- /Module/UnitTests/Data/Entities/ItemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/Data/Entities/ItemTests.cs -------------------------------------------------------------------------------- /Module/UnitTests/Data/Repositories/GenericRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/Data/Repositories/GenericRepositoryTests.cs -------------------------------------------------------------------------------- /Module/UnitTests/FakeDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/FakeDataContext.cs -------------------------------------------------------------------------------- /Module/UnitTests/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/ProjectTemplate.csproj -------------------------------------------------------------------------------- /Module/UnitTests/Providers/DateTimeProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/Providers/DateTimeProviderTests.cs -------------------------------------------------------------------------------- /Module/UnitTests/Services/Items/CreateItemDtoValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/Services/Items/CreateItemDtoValidatorTests.cs -------------------------------------------------------------------------------- /Module/UnitTests/Services/Items/ItemServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/Services/Items/ItemServiceTests.cs -------------------------------------------------------------------------------- /Module/UnitTests/Services/Items/UpdateItemDtoValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/Services/Items/UpdateItemDtoValidatorTests.cs -------------------------------------------------------------------------------- /Module/UnitTests/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/Startup.cs -------------------------------------------------------------------------------- /Module/UnitTests/StartupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/StartupTests.cs -------------------------------------------------------------------------------- /Module/UnitTests/UnitTests.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/UnitTests/UnitTests.vstemplate -------------------------------------------------------------------------------- /Module/build/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/.editorconfig -------------------------------------------------------------------------------- /Module/build/Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/Build.cs -------------------------------------------------------------------------------- /Module/build/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/Configuration.cs -------------------------------------------------------------------------------- /Module/build/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/Helpers.cs -------------------------------------------------------------------------------- /Module/build/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/ProjectTemplate.csproj -------------------------------------------------------------------------------- /Module/build/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/Properties/launchSettings.json -------------------------------------------------------------------------------- /Module/build/_build.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/_build.csproj.DotSettings -------------------------------------------------------------------------------- /Module/build/build.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/build.vstemplate -------------------------------------------------------------------------------- /Module/build/docs/articles/git.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/docs/articles/git.html -------------------------------------------------------------------------------- /Module/build/docs/articles/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/docs/articles/intro.html -------------------------------------------------------------------------------- /Module/build/docs/images/Package.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/docs/images/Package.gif -------------------------------------------------------------------------------- /Module/build/docs/images/create-beta-release.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/docs/images/create-beta-release.gif -------------------------------------------------------------------------------- /Module/build/docs/images/create-develop-branch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/docs/images/create-develop-branch.gif -------------------------------------------------------------------------------- /Module/build/docs/images/create-pull-request.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/docs/images/create-pull-request.gif -------------------------------------------------------------------------------- /Module/build/docs/images/create-release.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/docs/images/create-release.gif -------------------------------------------------------------------------------- /Module/build/docs/images/initial-commit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/docs/images/initial-commit.gif -------------------------------------------------------------------------------- /Module/build/docs/images/install-module.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/docs/images/install-module.gif -------------------------------------------------------------------------------- /Module/build/docs/images/setup-git-docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/build/docs/images/setup-git-docs.gif -------------------------------------------------------------------------------- /Module/module.web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/.editorconfig -------------------------------------------------------------------------------- /Module/module.web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/.gitignore -------------------------------------------------------------------------------- /Module/module.web/.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/.hintrc -------------------------------------------------------------------------------- /Module/module.web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/LICENSE -------------------------------------------------------------------------------- /Module/module.web/ProjectTemplate.njsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/ProjectTemplate.njsproj -------------------------------------------------------------------------------- /Module/module.web/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/api-extractor.json -------------------------------------------------------------------------------- /Module/module.web/eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/eslint.config.ts -------------------------------------------------------------------------------- /Module/module.web/module-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/module-icon.ico -------------------------------------------------------------------------------- /Module/module.web/module.web.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/module.web.vstemplate -------------------------------------------------------------------------------- /Module/module.web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/package.json -------------------------------------------------------------------------------- /Module/module.web/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/readme.md -------------------------------------------------------------------------------- /Module/module.web/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/components.d.ts -------------------------------------------------------------------------------- /Module/module.web/src/components/my-component/my-component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/components/my-component/my-component.scss -------------------------------------------------------------------------------- /Module/module.web/src/components/my-component/my-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/components/my-component/my-component.tsx -------------------------------------------------------------------------------- /Module/module.web/src/components/my-component/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/components/my-component/readme.md -------------------------------------------------------------------------------- /Module/module.web/src/components/my-component/usage/dnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/components/my-component/usage/dnn.md -------------------------------------------------------------------------------- /Module/module.web/src/components/my-component/usage/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/components/my-component/usage/javascript.md -------------------------------------------------------------------------------- /Module/module.web/src/components/my-edit/my-edit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/components/my-edit/my-edit.scss -------------------------------------------------------------------------------- /Module/module.web/src/components/my-edit/my-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/components/my-edit/my-edit.tsx -------------------------------------------------------------------------------- /Module/module.web/src/components/my-item-details/my-item-details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/components/my-item-details/my-item-details.scss -------------------------------------------------------------------------------- /Module/module.web/src/components/my-item-details/my-item-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/components/my-item-details/my-item-details.tsx -------------------------------------------------------------------------------- /Module/module.web/src/components/my-items-list/my-items-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/components/my-items-list/my-items-list.scss -------------------------------------------------------------------------------- /Module/module.web/src/components/my-items-list/my-items-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/components/my-items-list/my-items-list.tsx -------------------------------------------------------------------------------- /Module/module.web/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/index.html -------------------------------------------------------------------------------- /Module/module.web/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/index.js -------------------------------------------------------------------------------- /Module/module.web/src/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/index.js.map -------------------------------------------------------------------------------- /Module/module.web/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/index.ts -------------------------------------------------------------------------------- /Module/module.web/src/services/alert-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/services/alert-error.ts -------------------------------------------------------------------------------- /Module/module.web/src/services/client-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/services/client-base.ts -------------------------------------------------------------------------------- /Module/module.web/src/services/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/services/services.ts -------------------------------------------------------------------------------- /Module/module.web/src/store/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/src/store/state.ts -------------------------------------------------------------------------------- /Module/module.web/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/stencil.config.ts -------------------------------------------------------------------------------- /Module/module.web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module.web/tsconfig.json -------------------------------------------------------------------------------- /Module/module/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/.editorconfig -------------------------------------------------------------------------------- /Module/module/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/.github/dependabot.yml -------------------------------------------------------------------------------- /Module/module/.github/mergeable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/.github/mergeable.yml -------------------------------------------------------------------------------- /Module/module/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/.gitignore -------------------------------------------------------------------------------- /Module/module/.nuke/build.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/.nuke/build.schema.json -------------------------------------------------------------------------------- /Module/module/.nuke/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/.nuke/parameters.json -------------------------------------------------------------------------------- /Module/module/App.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/App.Config -------------------------------------------------------------------------------- /Module/module/Common/Extensions/IQueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Common/Extensions/IQueryableExtensions.cs -------------------------------------------------------------------------------- /Module/module/Common/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Common/Globals.cs -------------------------------------------------------------------------------- /Module/module/Controllers/ItemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Controllers/ItemController.cs -------------------------------------------------------------------------------- /Module/module/Controllers/LocalizationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Controllers/LocalizationController.cs -------------------------------------------------------------------------------- /Module/module/Controllers/ModuleApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Controllers/ModuleApiController.cs -------------------------------------------------------------------------------- /Module/module/Controllers/ServiceRouteMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Controllers/ServiceRouteMapper.cs -------------------------------------------------------------------------------- /Module/module/Data/Entities/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Data/Entities/BaseEntity.cs -------------------------------------------------------------------------------- /Module/module/Data/Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Data/Entities/IEntity.cs -------------------------------------------------------------------------------- /Module/module/Data/Entities/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Data/Entities/Item.cs -------------------------------------------------------------------------------- /Module/module/Data/ModuleDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Data/ModuleDbContext.cs -------------------------------------------------------------------------------- /Module/module/Data/Repositories/IItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Data/Repositories/IItemRepository.cs -------------------------------------------------------------------------------- /Module/module/Data/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Data/Repositories/IRepository.cs -------------------------------------------------------------------------------- /Module/module/Data/Repositories/ItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Data/Repositories/ItemRepository.cs -------------------------------------------------------------------------------- /Module/module/Data/Repositories/PagedList{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Data/Repositories/PagedList{T}.cs -------------------------------------------------------------------------------- /Module/module/Data/Repositories/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Data/Repositories/Repository.cs -------------------------------------------------------------------------------- /Module/module/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/LICENSE -------------------------------------------------------------------------------- /Module/module/Module.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Module.vstemplate -------------------------------------------------------------------------------- /Module/module/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/ProjectTemplate.csproj -------------------------------------------------------------------------------- /Module/module/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Module/module/Providers/DateTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Providers/DateTimeProvider.cs -------------------------------------------------------------------------------- /Module/module/Providers/IDateTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Providers/IDateTimeProvider.cs -------------------------------------------------------------------------------- /Module/module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/README.md -------------------------------------------------------------------------------- /Module/module/ReleaseNotes.html: -------------------------------------------------------------------------------- 1 |

Initial release

-------------------------------------------------------------------------------- /Module/module/Services/Items/CreateItemDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Services/Items/CreateItemDTO.cs -------------------------------------------------------------------------------- /Module/module/Services/Items/CreateItemDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Services/Items/CreateItemDtoValidator.cs -------------------------------------------------------------------------------- /Module/module/Services/Items/GetItemsPageDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Services/Items/GetItemsPageDTO.cs -------------------------------------------------------------------------------- /Module/module/Services/Items/IItemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Services/Items/IItemService.cs -------------------------------------------------------------------------------- /Module/module/Services/Items/ItemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Services/Items/ItemService.cs -------------------------------------------------------------------------------- /Module/module/Services/Items/ItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Services/Items/ItemViewModel.cs -------------------------------------------------------------------------------- /Module/module/Services/Items/ItemsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Services/Items/ItemsPageViewModel.cs -------------------------------------------------------------------------------- /Module/module/Services/Items/UpdateItemDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Services/Items/UpdateItemDTO.cs -------------------------------------------------------------------------------- /Module/module/Services/Items/UpdateItemDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Services/Items/UpdateItemDtoValidator.cs -------------------------------------------------------------------------------- /Module/module/Services/Localization/ILocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Services/Localization/ILocalizationService.cs -------------------------------------------------------------------------------- /Module/module/Services/Localization/LocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Services/Localization/LocalizationService.cs -------------------------------------------------------------------------------- /Module/module/Services/Localization/LocalizationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Services/Localization/LocalizationViewModel.cs -------------------------------------------------------------------------------- /Module/module/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/Startup.cs -------------------------------------------------------------------------------- /Module/module/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/build.cmd -------------------------------------------------------------------------------- /Module/module/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/build.ps1 -------------------------------------------------------------------------------- /Module/module/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/build.sh -------------------------------------------------------------------------------- /Module/module/docfx_project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/.gitignore -------------------------------------------------------------------------------- /Module/module/docfx_project/articles/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/articles/git.md -------------------------------------------------------------------------------- /Module/module/docfx_project/articles/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/articles/intro.md -------------------------------------------------------------------------------- /Module/module/docfx_project/articles/project-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/articles/project-architecture.md -------------------------------------------------------------------------------- /Module/module/docfx_project/articles/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/articles/toc.yml -------------------------------------------------------------------------------- /Module/module/docfx_project/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/docfx.json -------------------------------------------------------------------------------- /Module/module/docfx_project/images/Package.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/images/Package.gif -------------------------------------------------------------------------------- /Module/module/docfx_project/images/Push-Selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/images/Push-Selection.png -------------------------------------------------------------------------------- /Module/module/docfx_project/images/create-beta-release.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/images/create-beta-release.gif -------------------------------------------------------------------------------- /Module/module/docfx_project/images/create-develop-branch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/images/create-develop-branch.gif -------------------------------------------------------------------------------- /Module/module/docfx_project/images/create-pull-request.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/images/create-pull-request.gif -------------------------------------------------------------------------------- /Module/module/docfx_project/images/create-release.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/images/create-release.gif -------------------------------------------------------------------------------- /Module/module/docfx_project/images/initial-commit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/images/initial-commit.gif -------------------------------------------------------------------------------- /Module/module/docfx_project/images/install-module.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/images/install-module.gif -------------------------------------------------------------------------------- /Module/module/docfx_project/images/setup-git-docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/images/setup-git-docs.gif -------------------------------------------------------------------------------- /Module/module/docfx_project/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/index.md -------------------------------------------------------------------------------- /Module/module/docfx_project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/package.json -------------------------------------------------------------------------------- /Module/module/docfx_project/rest/rest-api.md: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /Module/module/docfx_project/rest/toc.yml: -------------------------------------------------------------------------------- 1 | - name: REST API 2 | href: rest-api.md 3 | -------------------------------------------------------------------------------- /Module/module/docfx_project/templates/mytemplate/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/templates/mytemplate/common.js -------------------------------------------------------------------------------- /Module/module/docfx_project/templates/mytemplate/layout/_master.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/templates/mytemplate/layout/_master.tmpl -------------------------------------------------------------------------------- /Module/module/docfx_project/templates/mytemplate/partials/footer.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/templates/mytemplate/partials/footer.tmpl.partial -------------------------------------------------------------------------------- /Module/module/docfx_project/templates/mytemplate/partials/scripts.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/templates/mytemplate/partials/scripts.tmpl.partial -------------------------------------------------------------------------------- /Module/module/docfx_project/templates/mytemplate/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/templates/mytemplate/styles/main.css -------------------------------------------------------------------------------- /Module/module/docfx_project/templates/mytemplate/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/templates/mytemplate/styles/main.js -------------------------------------------------------------------------------- /Module/module/docfx_project/templates/mytemplate/styles/mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/templates/mytemplate/styles/mermaid.min.js -------------------------------------------------------------------------------- /Module/module/docfx_project/templates/mytemplate/styles/mermaid.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/templates/mytemplate/styles/mermaid.min.js.map -------------------------------------------------------------------------------- /Module/module/docfx_project/templates/mytemplate/styles/toggle-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/templates/mytemplate/styles/toggle-theme.js -------------------------------------------------------------------------------- /Module/module/docfx_project/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/docfx_project/toc.yml -------------------------------------------------------------------------------- /Module/module/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/global.json -------------------------------------------------------------------------------- /Module/module/manifest.dnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/manifest.dnn -------------------------------------------------------------------------------- /Module/module/module-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/module-icon.ico -------------------------------------------------------------------------------- /Module/module/resources/App_LocalResources/ModelValidation.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/resources/App_LocalResources/ModelValidation.resx -------------------------------------------------------------------------------- /Module/module/resources/App_LocalResources/UI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/resources/App_LocalResources/UI.resx -------------------------------------------------------------------------------- /Module/module/resources/images/module-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/resources/images/module-icon.png -------------------------------------------------------------------------------- /Module/module/resources/views/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/resources/views/view.html -------------------------------------------------------------------------------- /Module/module/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/module/stylecop.json -------------------------------------------------------------------------------- /Module/root.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/Module/root.vstemplate -------------------------------------------------------------------------------- /PersonaBarModule/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/AssemblyInfo.cs -------------------------------------------------------------------------------- /PersonaBarModule/Eraware.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/Eraware.ico -------------------------------------------------------------------------------- /PersonaBarModule/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/Globals.cs -------------------------------------------------------------------------------- /PersonaBarModule/PersonaBarModule.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/PersonaBarModule.csproj -------------------------------------------------------------------------------- /PersonaBarModule/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/ProjectTemplate.csproj -------------------------------------------------------------------------------- /PersonaBarModule/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PersonaBarModule/UnitTests/Common/GlobalsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/UnitTests/Common/GlobalsTests.cs -------------------------------------------------------------------------------- /PersonaBarModule/UnitTests/Controllers/EchoControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/UnitTests/Controllers/EchoControllerTests.cs -------------------------------------------------------------------------------- /PersonaBarModule/UnitTests/Controllers/LocalizationControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/UnitTests/Controllers/LocalizationControllerTests.cs -------------------------------------------------------------------------------- /PersonaBarModule/UnitTests/Controllers/ServiceRouteMapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/UnitTests/Controllers/ServiceRouteMapperTests.cs -------------------------------------------------------------------------------- /PersonaBarModule/UnitTests/MenuControllers/MyPersonaBarModuleMenuControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/UnitTests/MenuControllers/MyPersonaBarModuleMenuControllerTests.cs -------------------------------------------------------------------------------- /PersonaBarModule/UnitTests/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/UnitTests/ProjectTemplate.csproj -------------------------------------------------------------------------------- /PersonaBarModule/UnitTests/Providers/DateTimeProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/UnitTests/Providers/DateTimeProviderTests.cs -------------------------------------------------------------------------------- /PersonaBarModule/UnitTests/Services/EchoServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/UnitTests/Services/EchoServiceTests.cs -------------------------------------------------------------------------------- /PersonaBarModule/UnitTests/StartupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/UnitTests/StartupTests.cs -------------------------------------------------------------------------------- /PersonaBarModule/UnitTests/UnitTests.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/UnitTests/UnitTests.vstemplate -------------------------------------------------------------------------------- /PersonaBarModule/_build/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/_build/.editorconfig -------------------------------------------------------------------------------- /PersonaBarModule/_build/Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/_build/Build.cs -------------------------------------------------------------------------------- /PersonaBarModule/_build/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/_build/Configuration.cs -------------------------------------------------------------------------------- /PersonaBarModule/_build/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/_build/Helpers.cs -------------------------------------------------------------------------------- /PersonaBarModule/_build/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/_build/ProjectTemplate.csproj -------------------------------------------------------------------------------- /PersonaBarModule/_build/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/_build/Properties/launchSettings.json -------------------------------------------------------------------------------- /PersonaBarModule/_build/_build.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/_build/_build.csproj.DotSettings -------------------------------------------------------------------------------- /PersonaBarModule/_build/build.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/_build/build.vstemplate -------------------------------------------------------------------------------- /PersonaBarModule/module.web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/.editorconfig -------------------------------------------------------------------------------- /PersonaBarModule/module.web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/.gitignore -------------------------------------------------------------------------------- /PersonaBarModule/module.web/.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/.hintrc -------------------------------------------------------------------------------- /PersonaBarModule/module.web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/LICENSE -------------------------------------------------------------------------------- /PersonaBarModule/module.web/ProjectTemplate.njsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/ProjectTemplate.njsproj -------------------------------------------------------------------------------- /PersonaBarModule/module.web/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/api-extractor.json -------------------------------------------------------------------------------- /PersonaBarModule/module.web/eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/eslint.config.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/module-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/module-icon.ico -------------------------------------------------------------------------------- /PersonaBarModule/module.web/module.web.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/module.web.vstemplate -------------------------------------------------------------------------------- /PersonaBarModule/module.web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/package.json -------------------------------------------------------------------------------- /PersonaBarModule/module.web/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/readme.md -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/components.d.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/components/my-app-root/my-app-root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/components/my-app-root/my-app-root.scss -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/components/my-app-root/my-app-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/components/my-app-root/my-app-root.tsx -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/MyPersonaBarModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/MyPersonaBarModule.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/tsconfig.json -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/types.d.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarCustomValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarCustomValidator.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarLoadPanelParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarLoadPanelParams.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarMenuItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarMenuItem.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarMenuSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarMenuSettings.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarMenuStructure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarMenuStructure.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarMenuStructureItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarMenuStructureItem.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarNotificationOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarNotificationOptions.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarPersistant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarPersistant.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarPersistantData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarPersistantData.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarServicesFramework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarServicesFramework.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarUtilities.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/dnn/types/IDnnPersonaBarValidator.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/index.html -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/index.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/services/alert-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/services/alert-error.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/services/client-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/services/client-base.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/src/services/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/src/services/services.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/stencil.config.ts -------------------------------------------------------------------------------- /PersonaBarModule/module.web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module.web/tsconfig.json -------------------------------------------------------------------------------- /PersonaBarModule/module/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/.editorconfig -------------------------------------------------------------------------------- /PersonaBarModule/module/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/.github/dependabot.yml -------------------------------------------------------------------------------- /PersonaBarModule/module/.github/mergeable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/.github/mergeable.yml -------------------------------------------------------------------------------- /PersonaBarModule/module/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/.gitignore -------------------------------------------------------------------------------- /PersonaBarModule/module/.nuke/build.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/.nuke/build.schema.json -------------------------------------------------------------------------------- /PersonaBarModule/module/.nuke/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/.nuke/parameters.json -------------------------------------------------------------------------------- /PersonaBarModule/module/Common/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Common/Globals.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/Controllers/EchoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Controllers/EchoController.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/Controllers/LocalizationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Controllers/LocalizationController.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/Controllers/ServiceRouteMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Controllers/ServiceRouteMapper.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/LICENSE -------------------------------------------------------------------------------- /PersonaBarModule/module/MenuControllers/MyPersonaBarModuleMenuController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/MenuControllers/MyPersonaBarModuleMenuController.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/Module.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Module.vstemplate -------------------------------------------------------------------------------- /PersonaBarModule/module/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/ProjectTemplate.csproj -------------------------------------------------------------------------------- /PersonaBarModule/module/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/Providers/DateTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Providers/DateTimeProvider.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/Providers/IDateTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Providers/IDateTimeProvider.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/README.md -------------------------------------------------------------------------------- /PersonaBarModule/module/ReleaseNotes.html: -------------------------------------------------------------------------------- 1 |

Initial release

-------------------------------------------------------------------------------- /PersonaBarModule/module/Services/EchoService/EchoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Services/EchoService/EchoDto.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/Services/EchoService/EchoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Services/EchoService/EchoService.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/Services/EchoService/EchoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Services/EchoService/EchoViewModel.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/Services/EchoService/IEchoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Services/EchoService/IEchoService.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/Services/Localization/ILocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Services/Localization/ILocalizationService.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/Services/Localization/LocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Services/Localization/LocalizationService.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/Services/Localization/LocalizationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Services/Localization/LocalizationViewModel.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/Startup.cs -------------------------------------------------------------------------------- /PersonaBarModule/module/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/app.config -------------------------------------------------------------------------------- /PersonaBarModule/module/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/build.cmd -------------------------------------------------------------------------------- /PersonaBarModule/module/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/build.ps1 -------------------------------------------------------------------------------- /PersonaBarModule/module/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/build.sh -------------------------------------------------------------------------------- /PersonaBarModule/module/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/global.json -------------------------------------------------------------------------------- /PersonaBarModule/module/manifest.dnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/manifest.dnn -------------------------------------------------------------------------------- /PersonaBarModule/module/module-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/module-icon.ico -------------------------------------------------------------------------------- /PersonaBarModule/module/module.generated.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/module.generated.sln -------------------------------------------------------------------------------- /PersonaBarModule/module/resources/App_LocalResources/MyPersonaBarModule.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/resources/App_LocalResources/MyPersonaBarModule.resx -------------------------------------------------------------------------------- /PersonaBarModule/module/resources/MyPersonaBarModule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/resources/MyPersonaBarModule.html -------------------------------------------------------------------------------- /PersonaBarModule/module/resources/css/MyPersonaBarModule.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PersonaBarModule/module/resources/images/module-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/resources/images/module-icon.png -------------------------------------------------------------------------------- /PersonaBarModule/module/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/module/stylecop.json -------------------------------------------------------------------------------- /PersonaBarModule/root.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/PersonaBarModule/root.vstemplate -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadas/Eraware_Dnn_Templates/HEAD/global.json --------------------------------------------------------------------------------