Skip to content

Commit

Permalink
Merge pull request #153 from TeamMiso/develop
Browse files Browse the repository at this point in the history
master 로 머지
  • Loading branch information
uuuuuuuk authored Mar 7, 2024
2 parents 5759dad + 621cfb4 commit 5c080b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/kotlin/andreas311/miso/domain/user/entity/User.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class User(
@GeneratedValue(generator = "uuid2")
@GenericGenerator(name = "uuid2", strategy = "uuid2")
@Column(columnDefinition = "BINARY(16)")
var id: UUID,
val id: UUID,

@Column(name = "email")
val email: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class WebMvcConfig : WebMvcConfigurer {
override fun addCorsMappings(registry: CorsRegistry) {

registry.addMapping("/**")
.allowedOrigins("https://miso-admin.vercel.app", "http://localhost:5173")
.allowedOrigins("https://miso-admin.vercel.app", "http://localhost:5173", "http://localhost:3000")
.allowedMethods("*")
.allowedHeaders("*")
.allowCredentials(true)
Expand Down

0 comments on commit 5c080b2

Please sign in to comment.