Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
42cb5ef
feat(oauth): support gitlab with self-hosted instances and agnostic g…
TotomInc Nov 7, 2025
6586773
fix(oauth): better handling of state
TotomInc Nov 7, 2025
02d7409
fix(studio): fetch base64 encoded files from GitLab
TotomInc Nov 7, 2025
963a4e7
refactor(studio): rename githubFile to remoteFile
TotomInc Nov 7, 2025
f5534c7
fix(git): useDevelopmentGit as GitProvider return-type
TotomInc Nov 10, 2025
4422716
fix(studio): missing renaming githubFile
TotomInc Nov 10, 2025
4bde58e
fix(content): handle content-type base64 or utf-8 decoding
TotomInc Nov 10, 2025
fea4c50
fix(git): missing provider on file fetched for GitHub provider
TotomInc Nov 10, 2025
91f6bef
refactor: more renaming from github to remote
TotomInc Nov 10, 2025
3b18110
fix(studio): properly display git-provider related info on UI (icon, …
TotomInc Nov 10, 2025
cfecc9d
Merge branch 'main' into pr/72
larbish Nov 14, 2025
0e3d026
Merge branch 'main' into pr/72
larbish Nov 14, 2025
62f3779
refactor: providers utils folder + one single useGitProvider compoabl…
larbish Nov 14, 2025
fa78335
rename git to gitProvider
larbish Nov 14, 2025
e08544d
Merge branch 'main' into pr/72
larbish Nov 14, 2025
6dac290
remote content compute fix
larbish Nov 14, 2025
1d00b69
add studio-session-check cookie
larbish Nov 15, 2025
dfc8f22
use CI variable for Gitlab instance
larbish Nov 17, 2025
ef77d29
Merge branch 'main' into pr/72
larbish Nov 17, 2025
5d4627d
add gitlab env variable
larbish Nov 17, 2025
75db1d4
fix i18n
larbish Nov 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# If using GitHub provider
STUDIO_GITHUB_CLIENT_ID=
STUDIO_GITHUB_CLIENT_SECRET=

# If using GitLab provider
STUDIO_GITLAB_APPLICATION_ID=
STUDIO_GITLAB_APPLICATION_SECRET=

STUDIO_GOOGLE_CLIENT_ID=
STUDIO_GOOGLE_CLIENT_SECRET=

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"unstorage": "1.17.1"
},
"devDependencies": {
"@gitbeaker/core": "^43.8.0",
"@iconify-json/simple-icons": "^1.2.57",
"@nuxt/content": "^3.8.0",
"@nuxt/eslint-config": "^1.10.0",
Expand Down
Loading