refactor(project): Renamed all instances of dafa to msfa or mina-sidor-fa. (TV-379)

Squashed commit of the following:

commit d3f52ff6876f6e246c7d3c188e56cc2370289341
Author: Erik Tiekstra <erik.tiekstra@arbetsformedlingen.se>
Date:   Tue Aug 17 14:10:38 2021 +0200

    Renamed all dafa instances to msfa
This commit is contained in:
Erik Tiekstra
2021-08-18 07:10:28 +02:00
parent 6d29baa533
commit 03a2c7a42f
349 changed files with 720 additions and 734 deletions

View File

@@ -0,0 +1,12 @@
<msfa-layout>
<digi-typography>
<section class="releases">
<h1>Releaser</h1>
<p>
Alla förändringar i applikationen blir dokumenterade på den här sidan. Versionen som ligger högst upp är den som
är aktuell just nu.
</p>
<markdown src="assets/CHANGELOG.md"></markdown>
</section>
</digi-typography>
</msfa-layout>

View File

@@ -0,0 +1,27 @@
import { CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA } from '@angular/core';
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { ReleasesComponent } from './releases.component';
describe('ReleasesComponent', () => {
let component: ReleasesComponent;
let fixture: ComponentFixture<ReleasesComponent>;
beforeEach(
waitForAsync(() => {
void TestBed.configureTestingModule({
schemas: [CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA],
declarations: [ReleasesComponent],
}).compileComponents();
})
);
beforeEach(() => {
fixture = TestBed.createComponent(ReleasesComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -0,0 +1,9 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';
@Component({
selector: 'msfa-releases',
templateUrl: './releases.component.html',
styleUrls: ['./releases.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class ReleasesComponent {}

View File

@@ -0,0 +1,18 @@
import { CommonModule } from '@angular/common';
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { LayoutModule } from '@msfa-shared/components/layout/layout.module';
import { MarkdownModule } from 'ngx-markdown';
import { ReleasesComponent } from './releases.component';
@NgModule({
schemas: [CUSTOM_ELEMENTS_SCHEMA],
declarations: [ReleasesComponent],
imports: [
CommonModule,
MarkdownModule.forChild(),
RouterModule.forChild([{ path: '', component: ReleasesComponent }]),
LayoutModule,
],
})
export class ReleasesModule {}