mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
[bugfix] Fix account roles (#1542)
* Change account role from string to object * Update tests * small fixes + swagger docs --------- Co-authored-by: zowhoey <11893985+zowhoey@users.noreply.github.com>
This commit is contained in:
@@ -55,7 +55,7 @@ const nav = {
|
||||
const { sidebar, panelRouter } = require("./lib/get-views")(nav);
|
||||
|
||||
function App({ account }) {
|
||||
const isAdmin = account.role == "admin";
|
||||
const isAdmin = account.role.name == "admin";
|
||||
const [logoutQuery] = query.useLogoutMutation();
|
||||
|
||||
return (
|
||||
|
@@ -90,7 +90,7 @@ function UserProfileForm({ data: profile }) {
|
||||
header={form.header.previewValue ?? profile.header}
|
||||
display_name={form.displayName.value ?? profile.username}
|
||||
username={profile.username}
|
||||
role={profile.role}
|
||||
role={profile.role.name}
|
||||
/>
|
||||
<div className="files">
|
||||
<div>
|
||||
|
Reference in New Issue
Block a user