This commit is contained in:
		
						commit
						fb31b621b8
					
				|  | @ -12,7 +12,6 @@ export type User = { | |||
| 
 | ||||
|   // For their user page
 | ||||
|   bio?: string | ||||
|   bannerUrl?: string | ||||
|   website?: string | ||||
|   twitterHandle?: string | ||||
|   discordHandle?: string | ||||
|  |  | |||
|  | @ -27,7 +27,7 @@ service cloud.firestore { | |||
|       allow read; | ||||
|       allow update: if userId == request.auth.uid | ||||
|                        && request.resource.data.diff(resource.data).affectedKeys() | ||||
|                                                                     .hasOnly(['bio', 'bannerUrl', 'website', 'twitterHandle', 'discordHandle', 'followedCategories', 'lastPingTime','shouldShowWelcome', 'hasSeenContractFollowModal', 'homeSections']); | ||||
|                                                                     .hasOnly(['bio', 'website', 'twitterHandle', 'discordHandle', 'followedCategories', 'lastPingTime','shouldShowWelcome', 'hasSeenContractFollowModal', 'homeSections']); | ||||
|       // User referral rules | ||||
|       allow update: if userId == request.auth.uid | ||||
|                          && request.resource.data.diff(resource.data).affectedKeys() | ||||
|  |  | |||
|  | @ -192,7 +192,6 @@ export type LiteUser = { | |||
|   avatarUrl?: string | ||||
| 
 | ||||
|   bio?: string | ||||
|   bannerUrl?: string | ||||
|   website?: string | ||||
|   twitterHandle?: string | ||||
|   discordHandle?: string | ||||
|  | @ -223,7 +222,6 @@ export function toLiteUser(user: User): LiteUser { | |||
|     username, | ||||
|     avatarUrl, | ||||
|     bio, | ||||
|     bannerUrl, | ||||
|     website, | ||||
|     twitterHandle, | ||||
|     discordHandle, | ||||
|  | @ -241,7 +239,6 @@ export function toLiteUser(user: User): LiteUser { | |||
|     url: `https://${ENV_CONFIG.domain}/${username}`, | ||||
|     avatarUrl, | ||||
|     bio, | ||||
|     bannerUrl, | ||||
|     website, | ||||
|     twitterHandle, | ||||
|     discordHandle, | ||||
|  |  | |||
|  | @ -28,7 +28,7 @@ export const getServerSideProps = redirectIfLoggedOut('/', async (_, creds) => { | |||
| 
 | ||||
| function EditUserField(props: { | ||||
|   user: User | ||||
|   field: 'bio' | 'website' | 'bannerUrl' | 'twitterHandle' | 'discordHandle' | ||||
|   field: 'bio' | 'website' | 'twitterHandle' | 'discordHandle' | ||||
|   label: string | ||||
| }) { | ||||
|   const { user, field, label } = props | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user