]> gitweb.factorcode.org Git - factor.git/blob - basis/furnace/auth/providers/db/db-docs.factor
Solution to Project Euler problem 65
[factor.git] / basis / furnace / auth / providers / db / db-docs.factor
1 USING: help.markup help.syntax ;
2 IN: furnace.auth.providers.db
3
4 HELP: users-in-db
5 { $class-description "Singleton class implementing the database authentication provider." } ;
6
7 ARTICLE: "furnace.auth.providers.db" "Database authentication provider"
8 "The " { $vocab-link "furnace.auth.providers.db" } " vocabulary implements an authentication provider which looks up authentication requests in the " { $snippet "USERS" } " table of the current database. The database schema is Factor-specific, and the table should be initialized by calling"
9 { $code "users create-table" }
10 "The authentication provider class:"
11 { $subsection users-in-db } ;
12
13 ABOUT: "furnace.auth.providers.db"