Files
Cockatrice/common/pb/response_replay_get_code.proto
RickyRister ab4373d025 Implement replay sharing (#6066)
* new protos

* implement commands on server

* add buttons

* icons

* run formatter

* Message on get replay code failure

* Add new commands to switch statement

* Better failure messages

* Fix permission check query

* Change hash method

* Prevent adding duplicate replays

* Clean up TabReplay ui

* Copy over replay name

* base64 encode the hash

* Shorten hash

* Better failure messages

* change icon back to search icon

* check hash before checking if user already has access

* update share icon

* Update label text
2025-08-24 22:40:44 -04:00

10 lines
197 B
Protocol Buffer

syntax = "proto2";
import "response.proto";
message Response_ReplayGetCode {
extend Response {
optional Response_ReplayGetCode ext = 1102;
}
optional string replay_code = 1;
}