1. 18 1月, 2020 7 次提交
  2. 17 1月, 2020 3 次提交
  3. 16 1月, 2020 8 次提交
  4. 15 1月, 2020 15 次提交
  5. 14 1月, 2020 4 次提交
  6. 13 1月, 2020 3 次提交
    • J
      Ignore CSS Ordering Warnings (#10068) · 9f6fdb95
      Joe Haddad 提交于
      9f6fdb95
    • B
      Update server.js (#10056) · 2cd8f1c9
      bokuweb 提交于
      I think `httpOnly` property should set as `cookie`'s property.
      This is because `SessionOptions` is following.
      
      ```
        interface SessionOptions {
          secret: string | string[];
          name?: string;
          store?: Store | MemoryStore;
          cookie?: {
            maxAge?: number;
            signed?: boolean;
            expires?: Date;
            httpOnly?: boolean;
            path?: string;
            domain?: string;
            secure?: boolean | 'auto';
            encode?: (val: string) => string;
            sameSite?: boolean | 'lax' | 'strict' | 'none';
          };
          genid?(req: express.Request): string;
          rolling?: boolean;
          resave?: boolean;
          proxy?: boolean;
          saveUninitialized?: boolean;
          unset?: string;
        }
      ```
      2cd8f1c9
    • L
      Change example link to be equal to query property (#10052) · 3096a772
      Lorenzo de Vargas Candiago 提交于
      The example uses { name: 'ZEIT' } but then say that it will link to `?name=Zeit`.
      Co-authored-by: NJJ Kasper <jj@jjsweb.site>
      3096a772