commit
edfc1e4b57
4 changed files with 4 additions and 3 deletions
|
@ -73,6 +73,7 @@
|
|||
- Update StatusDelete pipeline, dispatch async ([257c0949](https://github.com/pixelfed/pixelfed/commit/257c0949))
|
||||
- Update lexer/extractor to handle banned hashtags ([909a8a5a](https://github.com/pixelfed/pixelfed/commit/909a8a5a))
|
||||
- Update FederationController, fix double lock bug ([9fcccca9](https://github.com/pixelfed/pixelfed/commit/9fcccca9))
|
||||
- Update AdminInvite component, fix email regex ([2aea77d3](https://github.com/pixelfed/pixelfed/commit/2aea77d3))
|
||||
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
||||
|
||||
## [v0.11.4 (2022-10-04)](https://github.com/pixelfed/pixelfed/compare/v0.11.3...v0.11.4)
|
||||
|
|
2
public/js/admin_invite.js
vendored
2
public/js/admin_invite.js
vendored
File diff suppressed because one or more lines are too long
|
@ -24,7 +24,7 @@
|
|||
"/js/stories.js": "/js/stories.js?id=f3e34fad9d349ebf10155b3c2ecde729",
|
||||
"/js/portfolio.js": "/js/portfolio.js?id=11e6d0deeefcf4798782e141d82b07b8",
|
||||
"/js/installer.js": "/js/installer.js?id=e81d5e440c9217c7468d57d4e68694ab",
|
||||
"/js/admin_invite.js": "/js/admin_invite.js?id=af7a77327a45495ae763417201770a46",
|
||||
"/js/admin_invite.js": "/js/admin_invite.js?id=6c5fe1ec07b4fc9cd4deaf353bb4abb7",
|
||||
"/js/manifest.js": "/js/manifest.js?id=67776134d40f10fcf6f3dfacf8dbd559",
|
||||
"/js/home-12722-3lkw2.js": "/js/home-12722-3lkw2.js?id=c32a7b0165abc89c8074d4fe3823f2a1",
|
||||
"/js/compose-12722-3lkw2.js": "/js/compose-12722-3lkw2.js?id=be8d8bfa10d8c9294fc036ebc727be25",
|
||||
|
|
|
@ -372,7 +372,7 @@
|
|||
return false;
|
||||
}
|
||||
|
||||
return /^[a-z0-9.]{1,64}@[a-z0-9.]{1,64}$/i.test(this.form.email);
|
||||
return /^[a-zA-Z]+[a-zA-Z0-9_.-]+@[a-zA-Z0-9_.-]+[a-zA-Z]$/i.test(this.form.email);
|
||||
},
|
||||
|
||||
handleRegistration() {
|
||||
|
|
Loading…
Reference in a new issue