ソースを参照

Update the domain for cookies

Lee Morgan 1 ヶ月 前
コミット
804a170158
1 ファイル変更0 行追加1 行削除
  1. 0 1
      src/logic/create_cookie.rs

+ 0 - 1
src/logic/create_cookie.rs

@@ -11,7 +11,6 @@ pub fn create_cookie(name: String, value: String) -> Cookie<'static> {
             .finish()
     } else {
         Cookie::build(name, value)
-            .domain("exmaple.com")
             .path("/")
             .http_only(true)
             .same_site(SameSite::Lax)