-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UX: use group full name, add settings for description & ordering #1
base: main
Are you sure you want to change the base?
Conversation
} | ||
} | ||
@if $capitalize-names == "true" { | ||
&:first-letter { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"technically correct is the best correct" 😄
&:first-letter { | |
&::first-letter { |
import AboutPageUsers from "discourse/components/about-page-users"; | ||
import ConditionalLoadingSpinner from "discourse/components/conditional-loading-spinner"; | ||
|
||
export default class AdditionalAboutGroups extends Component { | ||
@service store; | ||
@service site; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🙏😄 (I do appreciate that 😃)
async loadGroupMembers(groupName) { | ||
try { | ||
const response = await fetch( | ||
`/groups/${groupName}/members.json?offset=0&order=&asc=true` | ||
`/g/${groupName}/members.json?offset=0&order=&asc=true` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm pretty sure those args are the default
`/g/${groupName}/members.json?offset=0&order=&asc=true` | |
`/g/${groupName}/members.json` |
Adds an additional request to get the full name, and optional settings for showing the group description and changing the group order.