13 lines
213 B
Python
13 lines
213 B
Python
|
from cc.environment import Environment
|
||
|
|
||
|
__author__ = 'itay.mizeretz'
|
||
|
|
||
|
|
||
|
class StandardEnvironment(Environment):
|
||
|
|
||
|
def is_auth_enabled(self):
|
||
|
return False
|
||
|
|
||
|
def get_auth_users(self):
|
||
|
return []
|