Skip to content

Commit

Permalink
Remove unused localize from capabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddasol committed Feb 7, 2025
1 parent d7c043f commit 8a34bf3
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,5 +279,4 @@ The access matrix looks like this:
| Robot Models | Read | Read | CRUD |
| Start Missions Directly ||| ✔️ |
| Stop/Pause/Resume Missions || ✔️ | ✔️ |
| Localize Robots || ✔️ | ✔️ |
| Send Robot to Dock || ✔️ | ✔️ |
1 change: 0 additions & 1 deletion backend/api.test/Database/DatabaseUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,6 @@ public async Task<Robot> NewRobot(
[
RobotCapabilitiesEnum.take_image,
RobotCapabilitiesEnum.return_to_home,
RobotCapabilitiesEnum.localize,
],
};

Expand Down
1 change: 0 additions & 1 deletion backend/api/Database/Models/Robot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ public enum RobotCapabilitiesEnum
take_thermal_video,
take_gas_measurement,
record_audio,
localize,
auto_localize,
auto_return_to_home,
return_to_home,
Expand Down
1 change: 0 additions & 1 deletion frontend/src/models/Robot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ export enum RobotCapabilitiesEnum {
take_thermal_video = 'take_thermal_video',
take_gas_measurement = 'take_gas_measurement',
record_audio = 'record_audio',
localize = 'localize',
auto_localize = 'auto_localize',
auto_return_to_home = 'auto_return_to_home',
return_to_home = 'return_to_home',
Expand Down

0 comments on commit 8a34bf3

Please sign in to comment.