##// END OF EJS Templates
auth-plugin: show if plugin is activated and enabled in the list....
auth-plugin: show if plugin is activated and enabled in the list. - We don't wont to confuse peaople with enabled/activated meaning and the fact plugin needs to be first activated, then enabled.

File last commit:

r3189:ed6bb022 default
r3269:4a18ba48 default
Show More
release.nix
19 lines | 248 B | text/x-nix | NixLexer
# This file defines how to "build" for packaging.
{ doCheck ? false
}:
let
enterprise_ce = import ./default.nix {
inherit
doCheck;
# disable checkPhase for build
checkPhase = ''
'';
};
in {
build = enterprise_ce;
}