- Create (TJ)
- CoC should be visibly displayed on participants’ website (TJ)
- Reference to where CoC can be found and where to find the confidential incident report should be printed (TJ)
- Confidential incident report should be made accessible to attendees/ participants (TJ)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Rule, Tree } from '@angular-devkit/schematics'; | |
import * as ts from 'typescript'; | |
import { toPropertyName, toClassName } from '@nrwl/workspace'; | |
import { RequestContext } from './request-context'; | |
import { createOrUpdate, replaceNodeValue, findNodes, } from '@nrwl/workspace/src/utils/ast-utils'; | |
import { getDecoratorPropertyValueNode } from '../../../utils/ast-utils'; | |
export function updateReducerKey(context: RequestContext): Rule { | |
return (host: Tree) => { | |
const modulePath = context.options.module; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias gch='git checkout' | |
alias gcb='git checkout -b' | |
alias gcm='git checkout master' | |
alias greb='git rebase' | |
alias grbm='git rebase master' | |
alias grbc='git rebase --continue' | |
alias gpl='git pull --ff' | |
alias gbr='git branch' | |
alias gpo='git push origin' | |
alias gdff='git diff' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Component({ | |
selector: 'app-movies-page', | |
template: ` | |
<h1>Movies Page</h1> | |
` | |
}) | |
export class MoviesPageComponent implements OnInit { | |
constructor(private store: Store<fromRoot.State>) {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Component({ | |
selector: 'app-movies-page', | |
template: ` | |
<h1>Movies Page</h1> | |
<div *ngIf="error$ | async as errorMessage"> | |
{{ errorMessage }} | |
</div> | |
` | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const selectMoviesPageError = createSelector( | |
selectMoviesState, | |
state => state.error // return error message | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface State { | |
items: Movie[]; | |
error: string | null; // track errors | |
} | |
export const initialState = { | |
items: [], | |
error: null // default error value | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Component({ | |
selector: 'app-movies-page', | |
template: ` | |
<h1>Movies Page</h1> | |
<div *ngIf="error$ | async as errorMessage"> | |
{{ errorMessage }} | |
</div> | |
` | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Component({ | |
selector: 'app-movies-page', | |
template: ` | |
<h1>Movies Page</h1> | |
<div *ngIf="error"> | |
{{ error }} | |
</div> | |
` | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Component({ | |
selector: 'app-movies-page', | |
template: ` | |
<h1>Movies Page</h1> | |
<div *ngIf="error"> | |
{{ error }} | |
</div> | |
` | |
}) |