Skip to content

0.3.0 - Celest Auth!

Compare
Choose a tag to compare
@dnys1 dnys1 released this 11 Mar 05:28
· 123 commits to main since this release
c1b96c7

πŸ‘‹ Celest Auth

This is the first release of Celest Auth, featuring passwordless email via OTP! Check out the docs to get started πŸ₯³

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.

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! πŸš€