Home
last modified time | relevance | path

Searched refs:user_exists (Results 1 – 25 of 364) sorted by relevance

12345678910>>...15

/dports/www/fusionpbx/fusionpbx-4.4.1/resources/install/scripts/app/dialplan/resources/before/
H A D010_user_exists.lua.noload1 --set the user_exists to true or false
3 if (user_exists == nil) then
5 cmd = "user_exists id ".. destination_number .." "..domain_name;
6 user_exists = trim(api:executeString(cmd));
7 --freeswitch.consoleLog("notice", "[app:dialplan] "..cmd.." user_exists: "..user_exists.."\n");
/dports/www/p5-Catalyst-Plugin-Authentication/Catalyst-Plugin-Authentication-0.10023/t/lib/AuthSessionTestApp/Controller/
H A DRoot.pm17 ok(!$c->user_exists, "no user exists");
27 ok( $c->user_exists, "user exists" );
38 ok( $c->user_exists, "user appears to exist" );
41 ok( !$c->user_exists, "user no longer appears to exist" );
72 ok( !$c->user_exists, "but no user exists" );
/dports/www/p5-Catalyst-Authentication-Store-DBIx-Class/Catalyst-Authentication-Store-DBIx-Class-0.1506/t/lib/TestApp/Controller/
H A DRoot.pm22 if ( $c->user_exists ) {
42 if ( $c->user_exists ) {
69 if ( $c->user_exists ) {
98 if ($ctx->user_exists) {
121 if ( $c->user_exists ) {
145 if ( $c->user_exists ) {
174 if ( $c->user_exists ) {
/dports/www/fusionpbx/fusionpbx-4.4.1/resources/install/scripts/app/ring_groups/
H A Dindex.lua353 user_exists = api:executeString(cmd);
354 if (user_exists == "true") then
454 user_exists = api:executeString(cmd);
457 if (user_exists == "true") then
490 user_exists = row.user_exists;
526 if (user_exists == "true") then
639 if (user_exists == "true") then
671 user_exists = 'false',
796 user_exists = row.user_exists;
801 if (user_exists == "true") then
[all …]
/dports/www/gitea/gitea-1.16.5/templates/user/auth/
H A Dlink_account.tmpl7 <a class="item {{if not .user_exists}}active{{end}}"
12 <a class="item {{if .user_exists}}active{{end}}"
20 <div class="ui tab {{if not .user_exists}}active{{end}}"
24 <div class="ui tab {{if .user_exists}}active{{end}}"
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/services/users/
H A Dupdate_service.rb22 user_exists = @user.persisted?
36 notify_success(user_exists)
73 def notify_success(user_exists) argument
74 notify_new_user(@user, nil) unless user_exists
/dports/sysutils/py-salt/salt-3004.1/salt/states/
H A Dmongodb_user.py209 user_exists = __salt__["mongodb.user_exists"](
212 if user_exists is True:
226 if not isinstance(user_exists, bool):
227 ret["comment"] = user_exists
/dports/games/wesnoth/wesnoth-1.14.17/src/server/
H A Dsample_user_handler.cpp36 if(user_exists(name)) throw error("This nickname is already registered"); in add_user()
47 if(!user_exists(name)) throw error("This nickname is not registered"); in remove_user()
52 bool suh::user_exists(const std::string& name) { in user_exists() function in suh
89 if(!user_exists(name)) return false; in user_is_moderator()
94 if(!user_exists(name)) return; in set_is_moderator()
212 if(!user_exists(name)) throw error("No user with the name '" + name + "' exists."); in user_info()
/dports/sysutils/py-salt/salt-3004.1/tests/pytests/unit/states/
H A Dtest_webutil.py24 ret = htpasswd.user_exists("larry", "badpass", "/etc/httpd/htpasswd")
45 ret = htpasswd.user_exists("larry", "badpass", "/etc/httpd/htpasswd")
66 ret = htpasswd.user_exists("larry", "badpass", "/etc/httpd/htpasswd")
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/system_check/app/
H A Dgit_user_default_ssh_config_check_spec.rb32 where(user_exists: [true, false], home_dir_exists: [true, false])
35 let(:expected_result) { !user_exists || !home_dir_exists }
38 stub_user if user_exists
/dports/net-im/prosody/prosody-0.11.13/plugins/
H A Dmod_message.lua16 local user_exists = require "core.usermanager".user_exists;
50 if user_exists(node, host) then
/dports/www/fusionpbx/fusionpbx-4.4.1/resources/install/scripts/app/dialplan/resources/after/
H A D010_user_record.lua.noload1 --set the user_exists to true or false
22 if (user_exists == "true") then
54 cmd = "user_exists id ".. sip_from_user .." "..sip_from_host;
55 user_exists = trim(api:executeString(cmd));
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/dellemc/openmanage/plugins/modules/
H A Dome_user_info.py150 user_exists = True
152 user_exists = False
154 if resp.status_code == 200 and user_exists:
/dports/security/p5-Unix-Passwd-File/Unix-Passwd-File-0.251/t/
H A Duser_exists.t13 ok( user_exists(etc_dir=>"$Bin/data/simple", user=>"bin"));
14 ok(!user_exists(etc_dir=>"$Bin/data/simple", user=>"foo"));
/dports/net-im/prosody/prosody-0.11.13/core/
H A Dusermanager.lua88 local function user_exists(username, host) function
90 return hosts[host].users.user_exists(username);
163 user_exists = user_exists;
/dports/www/silicon/silicon-0.1-124-g91ca205/examples/
H A Dblog_api.hh39 auto user_exists = !res.empty(); in authenticate() local
40 if (user_exists) in authenticate()
42 return user_exists; in authenticate()
/dports/net-im/prosody-modules/Community-Modules-bb8459c220c9/mod_auth_pam/
H A Dmod_auth_pam.lua11 function user_exists(username) function
24 return user_exists(username), true;
/dports/www/py-fastapi/fastapi-0.70.0/tests/
H A Dtest_param_in_path_and_dependency.py7 async def user_exists(user_id: int): function
11 @app.get("/users/{user_id}", dependencies=[Depends(user_exists)])
/dports/www/fusionpbx/fusionpbx-4.4.1/resources/install/scripts/
H A Ddisa.plus.lua137 user_exists = trim(api:executeString(cmd));
138 freeswitch.consoleLog("notice", "[disa] user_exists "..user_exists.."\n");
221 if (user_exists == "true") then
261 if (user_exists == "true") then
H A Ddisa.lua155 user_exists = trim(api:executeString(cmd));
156 if (user_exists == "true") then
183 if (user_exists == true) then
/dports/www/p5-CatalystX-SimpleLogin/CatalystX-SimpleLogin-0.21/t/
H A D01-live-test.t38 ok(!$c->user_exists, 'No user in $c after logout');
51 ok($c->user_exists, 'have the user back after re-login with "remember"');
58 ok(!$c->user_exists, 'No user in $c after logout from long session');
/dports/www/p5-MojoMojo/MojoMojo-1.12/lib/MojoMojo/Controller/
H A DPage.pm163 if ( $c->user_exists() ) { $user = $c->user->obj; }
267 if ( $c->user_exists ) {
316 if ( $c->user_exists() ) { $user = $c->user->obj; }
351 if ( $c->user_exists() ) {
385 if ( $c->user_exists() ) { $user = $c->user->obj; }
449 if ( !$c->user_exists() ) {
/dports/www/tikiwiki/tiki-21.2/lib/payment/behavior/
H A Dperform_trade.php35 if (! $userlib->user_exists($params['main_user'])) {
39 if (! $userlib->user_exists($params['other_user'])) {
/dports/sysutils/py-salt/salt-3004.1/tests/pytests/functional/states/rabbitmq/
H A Dtest_user.py27 "rabbitmq.user_exists": rabbitmq.user_exists,
37 "rabbitmq.user_exists": rabbitmq.user_exists,
/dports/databases/mantis/mantisbt-2.25.2/plugins/Source/pages/
H A Dedit.php28 if ( $f_user_id == 0 || user_exists( $f_user_id ) ) {
32 if ( $f_committer_id == 0 || user_exists( $f_committer_id ) ) {

12345678910>>...15