File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def __init__(self):
34
34
(r"/auth/logout" , LogoutHandler ),
35
35
]
36
36
settings = dict (
37
- cookie_secret = "32oETzKXQAGaYdkL5gEmGeJJFuYh7EQnp2XdTP1o/Vo= " ,
37
+ cookie_secret = "__TODO:_GENERATE_YOUR_OWN_RANDOM_VALUE_HERE__ " ,
38
38
login_url = "/auth/login" ,
39
39
)
40
40
tornado .web .Application .__init__ (self , handlers , ** settings )
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ def __init__(self):
51
51
static_path = os .path .join (os .path .dirname (__file__ ), "static" ),
52
52
ui_modules = {"Entry" : EntryModule },
53
53
xsrf_cookies = True ,
54
- cookie_secret = "11oETzKXQAGaYdkL5gEmGeJJFuYh7EQnp2XdTP1o/Vo= " ,
54
+ cookie_secret = "__TODO:_GENERATE_YOUR_OWN_RANDOM_VALUE_HERE__ " ,
55
55
login_url = "/auth/login" ,
56
56
autoescape = None ,
57
57
)
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ def __init__(self):
38
38
(r"/a/message/updates" , MessageUpdatesHandler ),
39
39
]
40
40
settings = dict (
41
- cookie_secret = "43oETzKXQAGaYdkL5gEmGeJJFuYh7EQnp2XdTP1o/Vo= " ,
41
+ cookie_secret = "__TODO:_GENERATE_YOUR_OWN_RANDOM_VALUE_HERE__ " ,
42
42
login_url = "/auth/login" ,
43
43
template_path = os .path .join (os .path .dirname (__file__ ), "templates" ),
44
44
static_path = os .path .join (os .path .dirname (__file__ ), "static" ),
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ def __init__(self):
39
39
(r"/auth/logout" , AuthLogoutHandler ),
40
40
]
41
41
settings = dict (
42
- cookie_secret = "12oETzKXQAGaYdkL5gEmGeJJFuYh7EQnp2XdTP1o/Vo= " ,
42
+ cookie_secret = "__TODO:_GENERATE_YOUR_OWN_RANDOM_VALUE_HERE__ " ,
43
43
login_url = "/auth/login" ,
44
44
template_path = os .path .join (os .path .dirname (__file__ ), "templates" ),
45
45
static_path = os .path .join (os .path .dirname (__file__ ), "static" ),
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ def __init__(self):
39
39
(r"/chatsocket" , ChatSocketHandler ),
40
40
]
41
41
settings = dict (
42
- cookie_secret = "43oETzKXQAGaYdkL5gEmGeJJFuYh7EQnp2XdTP1o/Vo= " ,
42
+ cookie_secret = "__TODO:_GENERATE_YOUR_OWN_RANDOM_VALUE_HERE__ " ,
43
43
template_path = os .path .join (os .path .dirname (__file__ ), "templates" ),
44
44
static_path = os .path .join (os .path .dirname (__file__ ), "static" ),
45
45
xsrf_cookies = True ,
You can’t perform that action at this time.
0 commit comments