| 
									
										
										
										
											2016-03-06 19:47:39 +08:00
										 |  |  | package api | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2021-11-02 20:41:45 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2021-11-02 20:41:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 08:34:30 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/api/dtos" | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/api/response" | 
					
						
							| 
									
										
										
										
											2024-06-13 12:11:35 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/apimachinery/identity" | 
					
						
							| 
									
										
										
										
											2023-01-26 03:00:32 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/kinds/preferences" | 
					
						
							| 
									
										
										
										
											2023-01-27 15:50:36 +08:00
										 |  |  | 	contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model" | 
					
						
							| 
									
										
										
										
											2023-01-16 23:33:55 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/services/dashboards" | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	pref "github.com/grafana/grafana/pkg/services/preference" | 
					
						
							| 
									
										
										
										
											2023-10-12 16:10:54 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/services/preference/prefapi" | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/web" | 
					
						
							| 
									
										
										
										
											2016-03-06 19:47:39 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-17 14:22:27 +08:00
										 |  |  | // POST /api/preferences/set-home-dash
 | 
					
						
							| 
									
										
										
										
											2023-01-27 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) SetHomeDashboard(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	cmd := pref.SavePreferenceCommand{} | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 	if err := web.Bind(c.Req, &cmd); err != nil { | 
					
						
							|  |  |  | 		return response.Error(http.StatusBadRequest, "bad request data", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-10-09 22:07:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-09 23:20:24 +08:00
										 |  |  | 	userID, err := identity.UserIdentifier(c.SignedInUser.GetID()) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return response.Error(http.StatusInternalServerError, "Failed to set home dashboard", err) | 
					
						
							| 
									
										
										
										
											2023-10-09 22:07:28 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd.UserID = userID | 
					
						
							| 
									
										
										
										
											2023-10-06 17:34:36 +08:00
										 |  |  | 	cmd.OrgID = c.SignedInUser.GetOrgID() | 
					
						
							| 
									
										
										
										
											2016-03-17 14:22:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-29 20:37:33 +08:00
										 |  |  | 	// the default value of HomeDashboardID is taken from input, when HomeDashboardID is set also,
 | 
					
						
							|  |  |  | 	// UID is used in preference to identify dashboard
 | 
					
						
							|  |  |  | 	dashboardID := cmd.HomeDashboardID | 
					
						
							|  |  |  | 	if cmd.HomeDashboardUID != nil { | 
					
						
							| 
									
										
										
										
											2023-01-16 23:33:55 +08:00
										 |  |  | 		query := dashboards.GetDashboardQuery{UID: *cmd.HomeDashboardUID} | 
					
						
							|  |  |  | 		if query.UID == "" { | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			dashboardID = 0 // clear the value
 | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2023-01-25 17:36:26 +08:00
										 |  |  | 			queryResult, err := hs.DashboardService.GetDashboard(c.Req.Context(), &query) | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			if err != nil { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 				return response.Error(http.StatusNotFound, "Dashboard not found", err) | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2023-01-25 17:36:26 +08:00
										 |  |  | 			dashboardID = queryResult.ID | 
					
						
							| 
									
										
										
										
											2022-04-29 20:37:33 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd.HomeDashboardID = dashboardID | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	if err := hs.preferenceService.Save(c.Req.Context(), &cmd); err != nil { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 		return response.ErrOrFallback(http.StatusInternalServerError, "Failed to set home dashboard", err) | 
					
						
							| 
									
										
										
										
											2016-03-17 14:35:06 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-17 14:22:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.Success("Home dashboard set") | 
					
						
							| 
									
										
										
										
											2016-03-17 14:22:27 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-04-02 08:34:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08:00
										 |  |  | // swagger:route GET /user/preferences user_preferences getUserPreferences
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Get user preferences.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Responses:
 | 
					
						
							|  |  |  | // 200: getPreferencesResponse
 | 
					
						
							|  |  |  | // 401: unauthorisedError
 | 
					
						
							|  |  |  | // 500: internalServerError
 | 
					
						
							| 
									
										
										
										
											2023-01-27 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) GetUserPreferences(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2024-08-09 23:20:24 +08:00
										 |  |  | 	userID, err := identity.UserIdentifier(c.SignedInUser.GetID()) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return response.Error(http.StatusInternalServerError, "Failed to update user preferences", err) | 
					
						
							| 
									
										
										
										
											2023-10-09 22:07:28 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-12 16:10:54 +08:00
										 |  |  | 	return prefapi.GetPreferencesFor(c.Req.Context(), hs.DashboardService, hs.preferenceService, c.SignedInUser.GetOrgID(), userID, 0) | 
					
						
							| 
									
										
										
										
											2016-04-02 08:34:30 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08:00
										 |  |  | // swagger:route PUT /user/preferences user_preferences updateUserPreferences
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Update user preferences.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Omitting a key (`theme`, `homeDashboardId`, `timezone`) will cause the current value to be replaced with the system default value.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Responses:
 | 
					
						
							|  |  |  | // 200: okResponse
 | 
					
						
							|  |  |  | // 400: badRequestError
 | 
					
						
							|  |  |  | // 401: unauthorisedError
 | 
					
						
							|  |  |  | // 500: internalServerError
 | 
					
						
							| 
									
										
										
										
											2023-01-27 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) UpdateUserPreferences(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 	dtoCmd := dtos.UpdatePrefsCmd{} | 
					
						
							|  |  |  | 	if err := web.Bind(c.Req, &dtoCmd); err != nil { | 
					
						
							|  |  |  | 		return response.Error(http.StatusBadRequest, "bad request data", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-10-09 22:07:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-09 23:20:24 +08:00
										 |  |  | 	userID, err := identity.UserIdentifier(c.SignedInUser.GetID()) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return response.Error(http.StatusInternalServerError, "Failed to update user preferences", err) | 
					
						
							| 
									
										
										
										
											2023-10-09 22:07:28 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-12 16:10:54 +08:00
										 |  |  | 	return prefapi.UpdatePreferencesFor(c.Req.Context(), hs.DashboardService, | 
					
						
							|  |  |  | 		hs.preferenceService, c.SignedInUser.GetOrgID(), userID, 0, &dtoCmd) | 
					
						
							| 
									
										
										
										
											2016-04-03 04:54:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08:00
										 |  |  | // swagger:route PATCH /user/preferences user_preferences patchUserPreferences
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Patch user preferences.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Responses:
 | 
					
						
							|  |  |  | // 200: okResponse
 | 
					
						
							|  |  |  | // 400: badRequestError
 | 
					
						
							|  |  |  | // 401: unauthorisedError
 | 
					
						
							|  |  |  | // 500: internalServerError
 | 
					
						
							| 
									
										
										
										
											2023-01-27 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) PatchUserPreferences(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | 	dtoCmd := dtos.PatchPrefsCmd{} | 
					
						
							|  |  |  | 	if err := web.Bind(c.Req, &dtoCmd); err != nil { | 
					
						
							|  |  |  | 		return response.Error(http.StatusBadRequest, "bad request data", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-10-09 22:07:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-09 23:20:24 +08:00
										 |  |  | 	userID, err := identity.UserIdentifier(c.SignedInUser.GetID()) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return response.Error(http.StatusInternalServerError, "Failed to update user preferences", err) | 
					
						
							| 
									
										
										
										
											2023-10-09 22:07:28 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return hs.patchPreferencesFor(c.Req.Context(), c.SignedInUser.GetOrgID(), userID, 0, &dtoCmd) | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (hs *HTTPServer) patchPreferencesFor(ctx context.Context, orgID, userID, teamId int64, dtoCmd *dtos.PatchPrefsCmd) response.Response { | 
					
						
							| 
									
										
										
										
											2023-05-10 21:37:04 +08:00
										 |  |  | 	if dtoCmd.Theme != nil && !pref.IsValidThemeID(*dtoCmd.Theme) { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 		return response.Error(http.StatusBadRequest, "Invalid theme", nil) | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-04-29 20:37:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// convert dashboard UID to ID in order to store internally if it exists in the query, otherwise take the id from query
 | 
					
						
							|  |  |  | 	dashboardID := dtoCmd.HomeDashboardID | 
					
						
							|  |  |  | 	if dtoCmd.HomeDashboardUID != nil { | 
					
						
							| 
									
										
										
										
											2023-01-16 23:33:55 +08:00
										 |  |  | 		query := dashboards.GetDashboardQuery{UID: *dtoCmd.HomeDashboardUID, OrgID: orgID} | 
					
						
							|  |  |  | 		if query.UID == "" { | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			// clear the value
 | 
					
						
							|  |  |  | 			defaultDash := int64(0) | 
					
						
							|  |  |  | 			dashboardID = &defaultDash | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2023-01-25 17:36:26 +08:00
										 |  |  | 			queryResult, err := hs.DashboardService.GetDashboard(ctx, &query) | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			if err != nil { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 				return response.Error(http.StatusNotFound, "Dashboard not found", err) | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2023-01-25 17:36:26 +08:00
										 |  |  | 			dashboardID = &queryResult.ID | 
					
						
							| 
									
										
										
										
											2022-04-29 20:37:33 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	dtoCmd.HomeDashboardID = dashboardID | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	patchCmd := pref.PatchPreferenceCommand{ | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 		UserID:            userID, | 
					
						
							|  |  |  | 		OrgID:             orgID, | 
					
						
							|  |  |  | 		TeamID:            teamId, | 
					
						
							|  |  |  | 		Theme:             dtoCmd.Theme, | 
					
						
							|  |  |  | 		Timezone:          dtoCmd.Timezone, | 
					
						
							|  |  |  | 		WeekStart:         dtoCmd.WeekStart, | 
					
						
							|  |  |  | 		HomeDashboardID:   dtoCmd.HomeDashboardID, | 
					
						
							|  |  |  | 		Language:          dtoCmd.Language, | 
					
						
							|  |  |  | 		QueryHistory:      dtoCmd.QueryHistory, | 
					
						
							|  |  |  | 		CookiePreferences: dtoCmd.Cookies, | 
					
						
							| 
									
										
										
										
											2024-07-03 17:40:51 +08:00
										 |  |  | 		Navbar:            dtoCmd.Navbar, | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	if err := hs.preferenceService.Patch(ctx, &patchCmd); err != nil { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 		return response.ErrOrFallback(http.StatusInternalServerError, "Failed to save preferences", err) | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return response.Success("Preferences updated") | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08:00
										 |  |  | // swagger:route GET /org/preferences org_preferences getOrgPreferences
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Get Current Org Prefs.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Responses:
 | 
					
						
							|  |  |  | // 200: getPreferencesResponse
 | 
					
						
							|  |  |  | // 401: unauthorisedError
 | 
					
						
							|  |  |  | // 403: forbiddenError
 | 
					
						
							|  |  |  | // 500: internalServerError
 | 
					
						
							| 
									
										
										
										
											2023-01-27 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) GetOrgPreferences(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2023-10-12 16:10:54 +08:00
										 |  |  | 	return prefapi.GetPreferencesFor(c.Req.Context(), hs.DashboardService, hs.preferenceService, c.SignedInUser.GetOrgID(), 0, 0) | 
					
						
							| 
									
										
										
										
											2016-04-03 04:54:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08:00
										 |  |  | // swagger:route PUT /org/preferences org_preferences updateOrgPreferences
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Update Current Org Prefs.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Responses:
 | 
					
						
							|  |  |  | // 200: okResponse
 | 
					
						
							|  |  |  | // 400: badRequestError
 | 
					
						
							|  |  |  | // 401: unauthorisedError
 | 
					
						
							|  |  |  | // 403: forbiddenError
 | 
					
						
							|  |  |  | // 500: internalServerError
 | 
					
						
							| 
									
										
										
										
											2023-01-27 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) UpdateOrgPreferences(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 	dtoCmd := dtos.UpdatePrefsCmd{} | 
					
						
							|  |  |  | 	if err := web.Bind(c.Req, &dtoCmd); err != nil { | 
					
						
							|  |  |  | 		return response.Error(http.StatusBadRequest, "bad request data", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-04-29 20:37:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-12 16:10:54 +08:00
										 |  |  | 	return prefapi.UpdatePreferencesFor(c.Req.Context(), hs.DashboardService, hs.preferenceService, c.SignedInUser.GetOrgID(), 0, 0, &dtoCmd) | 
					
						
							| 
									
										
										
										
											2016-04-02 08:34:30 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08:00
										 |  |  | // swagger:route PATCH /org/preferences org_preferences patchOrgPreferences
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Patch Current Org Prefs.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Responses:
 | 
					
						
							|  |  |  | // 200: okResponse
 | 
					
						
							|  |  |  | // 400: badRequestError
 | 
					
						
							|  |  |  | // 401: unauthorisedError
 | 
					
						
							|  |  |  | // 403: forbiddenError
 | 
					
						
							|  |  |  | // 500: internalServerError
 | 
					
						
							| 
									
										
										
										
											2023-01-27 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) PatchOrgPreferences(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | 	dtoCmd := dtos.PatchPrefsCmd{} | 
					
						
							|  |  |  | 	if err := web.Bind(c.Req, &dtoCmd); err != nil { | 
					
						
							|  |  |  | 		return response.Error(http.StatusBadRequest, "bad request data", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-10-06 17:34:36 +08:00
										 |  |  | 	return hs.patchPreferencesFor(c.Req.Context(), c.SignedInUser.GetOrgID(), 0, 0, &dtoCmd) | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // swagger:parameters  updateUserPreferences
 | 
					
						
							|  |  |  | type UpdateUserPreferencesParams struct { | 
					
						
							|  |  |  | 	// in:body
 | 
					
						
							|  |  |  | 	// required:true
 | 
					
						
							|  |  |  | 	Body dtos.UpdatePrefsCmd `json:"body"` | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // swagger:parameters updateOrgPreferences
 | 
					
						
							|  |  |  | type UpdateOrgPreferencesParams struct { | 
					
						
							|  |  |  | 	// in:body
 | 
					
						
							|  |  |  | 	// required:true
 | 
					
						
							|  |  |  | 	Body dtos.UpdatePrefsCmd `json:"body"` | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // swagger:response getPreferencesResponse
 | 
					
						
							|  |  |  | type GetPreferencesResponse struct { | 
					
						
							|  |  |  | 	// in:body
 | 
					
						
							| 
									
										
										
										
											2023-04-28 04:32:38 +08:00
										 |  |  | 	Body preferences.Spec `json:"body"` | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // swagger:parameters patchUserPreferences
 | 
					
						
							|  |  |  | type PatchUserPreferencesParams struct { | 
					
						
							|  |  |  | 	// in:body
 | 
					
						
							|  |  |  | 	// required:true
 | 
					
						
							|  |  |  | 	Body dtos.PatchPrefsCmd `json:"body"` | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // swagger:parameters patchOrgPreferences
 | 
					
						
							|  |  |  | type PatchOrgPreferencesParams struct { | 
					
						
							|  |  |  | 	// in:body
 | 
					
						
							|  |  |  | 	// required:true
 | 
					
						
							|  |  |  | 	Body dtos.PatchPrefsCmd `json:"body"` | 
					
						
							|  |  |  | } |