Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isEnabledUser (0.17 sec)

  1. .cm/plugins/filters/isEnabledUser/index.js

     * @example {{ pr.author | isEnabledUser }}
     */
    function isEnabledUser(username) {
        return (buildScan.includes(username) || configuration.includes(username) || devProd.includes(username) || execution.includes(username) || ide.includes(username) || jvm.includes(username));
    };
    
    JavaScript
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Mon Feb 05 22:00:34 GMT 2024
    - 923 bytes
    - Viewed (0)
  2. .cm/summary_table.cm

    is:
      requested: {{ (pr.comments | match(attr='content', term='@bot-gitstream check all') | some) or (pr.comments | match(attr='content', term='@bot-gitstream check summary') | some) }}
    
    author:
      using_gitstream: {{ (pr.author | isEnabledUser ) }}
    
    # Perhaps a task could generate this list from the CODEOWNERS, or both this and CODEOWNERS could be generated from different single source of truth?
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Feb 08 15:20:44 GMT 2024
    - 6.5K bytes
    - Viewed (0)
Back to top