-
Notifications
You must be signed in to change notification settings - Fork 18
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
Show previous admin user addresses in adminJS #1744
base: staging
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -7,6 +7,7 @@ import { | |||||||||||||||||||||||||||||||||||||||||
After, | ||||||||||||||||||||||||||||||||||||||||||
} from 'adminjs/src/backend/actions/action.interface'; | ||||||||||||||||||||||||||||||||||||||||||
import { RecordJSON } from 'adminjs/src/frontend/interfaces/record-json.interface'; | ||||||||||||||||||||||||||||||||||||||||||
import moment from 'moment/moment'; | ||||||||||||||||||||||||||||||||||||||||||
import { | ||||||||||||||||||||||||||||||||||||||||||
Project, | ||||||||||||||||||||||||||||||||||||||||||
ProjectUpdate, | ||||||||||||||||||||||||||||||||||||||||||
|
@@ -1030,8 +1031,19 @@ export const projectsTab = { | |||||||||||||||||||||||||||||||||||||||||
const adminUser = await User.findOne({ | ||||||||||||||||||||||||||||||||||||||||||
where: { id: request?.record?.params?.newAdminId }, | ||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||
const changeLog = | ||||||||||||||||||||||||||||||||||||||||||
'previous admin user address: ' + | ||||||||||||||||||||||||||||||||||||||||||
project.adminUser.walletAddress; | ||||||||||||||||||||||||||||||||||||||||||
project.adminUser = adminUser!; | ||||||||||||||||||||||||||||||||||||||||||
await project.save(); | ||||||||||||||||||||||||||||||||||||||||||
await ProjectUpdate.insert({ | ||||||||||||||||||||||||||||||||||||||||||
userId: currentAdmin.id, | ||||||||||||||||||||||||||||||||||||||||||
projectId: project.id, | ||||||||||||||||||||||||||||||||||||||||||
content: changeLog, | ||||||||||||||||||||||||||||||||||||||||||
title: 'admin user changed', | ||||||||||||||||||||||||||||||||||||||||||
createdAt: moment().toDate(), | ||||||||||||||||||||||||||||||||||||||||||
isMain: false, | ||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure the The current code does not handle potential errors during the insertion of the - await ProjectUpdate.insert({
- userId: currentAdmin.id,
- projectId: project.id,
- content: changeLog,
- title: 'admin user changed',
- createdAt: moment().toDate(),
- isMain: false,
- });
+ try {
+ await ProjectUpdate.insert({
+ userId: currentAdmin.id,
+ projectId: project.id,
+ content: changeLog,
+ title: 'admin user changed',
+ createdAt: moment().toDate(),
+ isMain: false,
+ });
+ } catch (error) {
+ logger.error('Failed to insert project update', error);
+ } Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
// Not required for now | ||||||||||||||||||||||||||||||||||||||||||
// Project.notifySegment(project, SegmentEvents.PROJECT_EDITED); | ||||||||||||||||||||||||||||||||||||||||||
|
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.
Ensure the previous admin user exists before accessing the wallet address.
The code assumes that
project.adminUser
always exists. Add a check to avoid potential runtime errors.Committable suggestion