Remove test code

- Add announcement to link for v3
This commit is contained in:
Daniel J. Summers 2023-02-01 22:17:22 -05:00
parent de0883b898
commit 46a4e4b09d
3 changed files with 34 additions and 7 deletions

View File

@ -0,0 +1,29 @@
# Jobs, Jobs, Jobs Version 3
Version 3 of Jobs, Jobs, Jobs is now available! This major release covers:
- Separating accounts from their Mastodon dependence
- Supporting chronological employment history in profiles
- Allowing profiles to be shared publicly
- Printing employment profiles
- Simplifying the infrastructure on which it runs
## Come One, Come All, Human Resources!
Previous versions utilized Mastodon and its API to authorize users with No Agenda-affiliated instances. This ended up being both too restrictive and unreliable. Version 3 handles user accounts itself, so registration is not tied to another service.
## Migrating Your Information from v2
The content from v2 is available in v3, but will not be visible until it is associated with a v3-created account. If you had content in v2, you should have received a message from @danieljsummers on No Agenda Social with instructions. _(NOTE: ITM, Slaves! and Liberty Woof have closed, so these people could not be reached directly.)_ The process is:
- [Create an account](https://noagendacareers.com/citizen/register)
- Verify that account
- Reply to the private message on Mastodon with the information requested
v2 data will be removed at some point after June 1st, 2023.
## How Does It Work?
Jobs, Jobs, Jobs is a job site that supports both employment profiles and job listings, allowing its users to either look for or recruit qualified people from the No Agenda tribe. The best way to get started would be to [look over the help files](https://noagendacareers.com/how-it-works). Then, register for an account, copy/paste your résumé there, or take a bit more time and fill out a full employment profile. If you are a person who hires or recruits, post your open positions.
In short - **use it**; a site like this only works if it provides value, and it has no value without your participation.

View File

@ -61,11 +61,9 @@ module private Auth =
/// Require an administrative user (used for legacy migration endpoints) /// Require an administrative user (used for legacy migration endpoints)
let requireAdmin : HttpHandler = requireUser >=> fun next ctx -> task { let requireAdmin : HttpHandler = requireUser >=> fun next ctx -> task {
// let adminUser = (config ctx)["AdminUser"] let adminUser = (config ctx)["AdminUser"]
// if adminUser = defaultArg (tryUser ctx) "" then return! next ctx if adminUser = defaultArg (tryUser ctx) "" then return! next ctx
// else return! Error.notAuthorized next ctx else return! Error.notAuthorized next ctx
// TODO: uncomment the above, remove the line below
return! next ctx
} }

View File

@ -20,8 +20,8 @@ module private Helpers =
/// Create a message with to, from, and subject completed /// Create a message with to, from, and subject completed
let createMessage citizen subject = let createMessage citizen subject =
let msg = new MimeMessage () let msg = new MimeMessage ()
msg.From.Add (MailboxAddress ("Jobs, Jobs, Jobs", (* "daniel@bitbadger.solutions" *) "summersd@localhost")) msg.From.Add (MailboxAddress ("Jobs, Jobs, Jobs", "daniel@bitbadger.solutions"))
msg.To.Add (MailboxAddress (Citizen.name citizen, (* citizen.Email *) "summersd@localhost")) msg.To.Add (MailboxAddress (Citizen.name citizen, citizen.Email))
msg.Subject <- subject msg.Subject <- subject
msg msg