Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
0.3.0 - Celest Auth! source code.tar.gz | 2024-03-11 | 2.4 MB | |
0.3.0 - Celest Auth! source code.zip | 2024-03-11 | 2.9 MB | |
README.md | 2024-03-11 | 898 Bytes | |
Totals: 3 Items | 5.4 MB | 0 |
👋 Celest Auth
This is the first release of Celest Auth, featuring passwordless email via OTP! Check out the docs to get started 🥳
:::dart
import 'package:celest/celest.dart';
const auth = Auth(
providers: [
AuthProvider.email(),
],
);
🔒 Authorization for Functions
We've added supported for new function annotations to control authorization: @public
and @authenticated
. See this guide for how to use them in your project.
:::dart
import 'package:celest/celest.dart';
@authenticated
Future<String> sayHello() async {
return 'Hello, valued customer!';
}
☁️ Celest Cloud
We've begun rolling out access to the waitlist! Keep a look out for your invite this week! 🚀