Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
meanspec-frontend
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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MeanSpec (SCE338 2024-2 Group 1)
meanspec-frontend
Merge requests
!42
refactor: uuid를 통해 공유할 수 있도록 변경
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
refactor: uuid를 통해 공유할 수 있도록 변경
refactor/share
into
main
Overview
0
Commits
2
Pipelines
1
Changes
7
Merged
정원제
requested to merge
refactor/share
into
main
7 months ago
Overview
0
Commits
2
Pipelines
1
Changes
7
공유 기능을 검색 페이지에서 내 PC 페이지로 이동
UUID 기반 공유 시스템 구현
공유된 조합 페이지 UI/UX 개선
공유 정보 카드 디자인 추가
BREAKING CHANGE:
기존 URL 파라미터 방식의 공유 기능 제거
공유 버튼 위치 변경
0
0
Merge request reports
Compare
main
version 1
ee29e46e
7 months ago
main (base)
and
latest version
latest version
9090253f
2 commits,
7 months ago
version 1
ee29e46e
1 commit,
7 months ago
7 files
+
269
−
57
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
src/api/my/createUUID.js
0 → 100644
+
12
−
0
View file @ 9090253f
Edit in single-file editor
Open in Web IDE
import
api
from
"
../axios
"
;
const
createUUID
=
async
(
pcId
)
=>
{
try
{
const
response
=
await
api
.
post
(
`/my/pc/
${
pcId
}
/uuid`
);
return
response
.
data
.
data
.
uuid
.
uuid
;
}
catch
(
error
)
{
throw
error
;
}
};
export
default
createUUID
;
\ No newline at end of file
Loading