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 { Injectable, CanActivate, ExecutionContext } from '@nestjs/common' | |
import { getAction } from '@nestjsx/crud' | |
@Injectable() | |
export class RestfulCrudRoleGuard implements CanActivate { | |
constructor( | |
// private readonly reflector: Reflector, | |
public restfulCrudOptions: { | |
readAllRoles: string [], |
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
# non root user example for alpine | |
# | |
# usage: | |
# $ docker build --build-arg "USER=someuser" --tag test . | |
# $ docker run --rm test | |
FROM alpine | |
ARG USER=default | |
ENV HOME /home/$USER |
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
"use strict"; | |
/** | |
* Hypertext Transfer Protocol (HTTP) response status codes. | |
* @see {@link https://en.wikipedia.org/wiki/List_of_HTTP_status_codes} | |
*/ | |
enum HttpStatusCode { | |
/** | |
* The server has received the request headers and the client should proceed to send the request body |
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
// Modern Scale for Web Typography | |
// Ref: http://typecast.com/blog/a-more-modern-scale-for-web-typography | |
// ----------------------------------------------------------------------------- | |
// Mobile | |
// ----------------------------------------------------------------------------- | |
// Elem | Font | Line | |
// ----------------------------------------------------------------------------- | |
// Body | 16px | 20px | |
// h1 | 32px | 40px | |
// h2 | 26px | 30px |