Skip to content

Commit 42791db

Browse files
derick-montaguerfrandse
authored andcommitted
Remove trailing forward slash from api endpoint
For consistency, I have removed the trailing / on the get boot settings request. This keeps the file value listed in the browser developer tool's network interface consistent in naming and makes debugging a better experience. Signed-off-by: Derick Montague <[email protected]> Change-Id: I8f2e5b58e12bba1c17c8a483f638e1d727883c6a
1 parent 90c3434 commit 42791db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/store/modules/Control/BootSettingsStore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const BootSettingsStore = {
3232
actions: {
3333
async getBootSettings({ commit }) {
3434
return await api
35-
.get('/redfish/v1/Systems/system/')
35+
.get('/redfish/v1/Systems/system')
3636
.then(({ data: { Boot } }) => {
3737
commit(
3838
'setBootSourceOptions',

0 commit comments

Comments
 (0)