-
Notifications
You must be signed in to change notification settings - Fork 0
[codex] remove dead canvas HTTP path and add PR template #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| ## What does this PR do? | ||
| > Briefly describe the changes. (e.g., "Added a user authentication form" or "Refactored the API fetching logic.") | ||
| - | ||
| - | ||
|
|
||
| ## Why is this necessary? | ||
| > Explain the *problem* you are solving. If you look back at this in 6 months, will you know why you wrote this code? | ||
| - | ||
|
|
||
| ## 🧠 What did I learn? (The most important part!) | ||
| > Did you figure out a new CSS trick? Finally understand Promises? Make a note of it here. | ||
| - | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,8 +21,8 @@ | |
| </dependency> | ||
|
|
||
| <dependency> | ||
| <groupId>org.springframework.boot</groupId> | ||
| <artifactId>spring-boot-starter-web</artifactId> | ||
| <groupId>org.springframework</groupId> | ||
| <artifactId>spring-web</artifactId> | ||
| </dependency> | ||
|
Comment on lines
23
to
26
|
||
|
|
||
| <dependency> | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,9 +20,9 @@ | |
| /** | ||
| * gRPC server adapter for durable canvas state. | ||
| * | ||
| * <p>The HTTP controller can remain available as a debug surface, but internal | ||
| * service-to-service traffic should use this gRPC contract so collab and canvas | ||
| * share one compile-time-checked interface. | ||
| * <p>This is the only service-to-service transport for durable canvas state. | ||
| * Keeping the boundary on gRPC avoids a second parallel contract drifting away | ||
| * from the real persistence and sequencing path. | ||
|
Comment on lines
+23
to
+25
|
||
| */ | ||
| @GrpcService | ||
| public class CanvasGrpcService extends CanvasServiceGrpc.CanvasServiceImplBase { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The template currently includes empty list items (
-with no content). These render as blank bullets and can be confusing to fill out (and may be flagged by Markdown linters if added later). Consider replacing them with clearer placeholders (e.g., HTML comments, or checkbox items like- [ ] ...) so authors know what to write without leaving empty bullets.