-
-
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
Added some instanceconfigs and added person registration applications #59
Conversation
@jgrim Please make a deep check here as i changed a lot. |
src/main/resources/db/migration/V20231006__Create_foreign_key_references.sql
Outdated
Show resolved
Hide resolved
…tion' into ferature/49-registration-application
src/main/resources/db/migration/V20231003__Create_initial_entity_tables.sql
Show resolved
Hide resolved
src/main/resources/db/migration/V20231003__Create_initial_entity_tables.sql
Outdated
Show resolved
Hide resolved
src/main/resources/db/migration/V20231003__Create_initial_entity_tables.sql
Outdated
Show resolved
Hide resolved
src/main/resources/db/migration/V20231006__Create_foreign_key_references.sql
Outdated
Show resolved
Hide resolved
src/main/resources/db/migration/V20231003__Create_initial_entity_tables.sql
Outdated
Show resolved
Hide resolved
`registration_mode` ENUM ('Closed', 'RequireApplication', 'Open') NOT NULL DEFAULT 'Closed', | ||
`registration_question` TEXT NULL, |
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 thinking on this more, just a handful of columns add so much more code and complexity. Not sure how I feel about it given that we plan to store config data when possible for nonlocal instances.
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.
We can save it as a json in one column XD
But it was the first instance after that, for adding another one is just 3-4 lines of code.
...ava/com/sublinks/sublinksapi/api/lemmy/v3/common/controllers/AbstractLemmyApiController.java
Show resolved
Hide resolved
src/main/java/com/sublinks/sublinksapi/instance/dto/Instance.java
Outdated
Show resolved
Hide resolved
…tion-application Added some instanceconfigs and added person registration applications
closes #49