Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dashboard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
red-giant
dashboard
Merge requests
!56
Refined auth flow and new website pages.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Refined auth flow and new website pages.
dev
into
master
Overview
0
Commits
144
Pipelines
1
Changes
67
Merged
Defendi Alberto
requested to merge
dev
into
master
3 years ago
Overview
0
Commits
144
Pipelines
1
Changes
67
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
92e6645f
144 commits,
3 years ago
67 files
+
1253
−
959
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
67
Search (e.g. *.vue) (Ctrl+P)
src/api/configDjangoCookieName.ts
0 → 100644
+
10
−
0
Options
import
axios
from
'
axios
'
;
/**
* Config for django compatibility.
*/
export
const
configDjangoCookieName
=
():
void
=>
{
axios
.
defaults
.
xsrfHeaderName
=
'
X-CSRFTOKEN
'
;
axios
.
defaults
.
xsrfCookieName
=
'
csrftoken
'
;
axios
.
defaults
.
withCredentials
=
true
;
};
Loading