Condos Homes logo
HomeNeighbourhoodsMapBlogBrokerage

Condos Homes

Red Bricks is your destination for pre-construction condos, townhouses, and homes. Access platinum listings, launching soon projects, and more.

Discover

  • Home
  • Neighbourhoods
  • Map
  • Blog
  • Developers
  • Cities

Company

  • About Us
  • Our Team
  • Contact
  • Assignments 2
  • Sample 2
  • Sample 3
  • An Explanation of Condo Maintenance Fees

Get in Touch

Have questions about a project? We're here to help.

Send a Message →
RE/MAX Premier Inc., Brokerage logo

Suzan McKenzie

RE/MAX Premier Inc., Brokerage

1885 Wilson Avenue Ste 200A, Toronto, Ontario, M9M1A2

Phone: 416-743-2000

Listing data is provided under license from the Toronto Regional Real Estate Board (TRREB). TRREB assumes no responsibility for the accuracy of the information contained herein. Data is updated periodically and may not reflect the most current market activity. Not intended to solicit buyers or sellers currently under contract. MLS®, REALTOR®, and the associated logos are certification marks owned by the Canadian Real Estate Association (CREA) and identify real estate professionals who are members of CREA.

© 2026 Condos Homes. All rights reserved.

Data powered by

Privacy PolicyTerms of Service
Home/Help Center/Technical FAQ/Database and Data Security
settingsgetting-started

Database and Data Security

How Supabase, RLS, and encryption protect your data.

Last updatedMarch 22, 2026

On this page

  • Database and Data Security
  • Row Level Security (RLS)
  • Authentication
  • Encryption
  • What you should do

Database and Data Security

Your data is stored in Supabase, a managed PostgreSQL database with enterprise-grade security.

Row Level Security (RLS)

Every table in your database has Row Level Security policies that control who can read and write data:

  • Contacts — Only the assigned agent and admins can view a contact record
  • Favorites — Users can only access their own saved favorites
  • Blog posts — Published posts are publicly readable; only admins can create or edit
  • Portfolio — Units are visible only to the assigned agent, client, and collaborators

Authentication

User authentication is handled by Supabase Auth:

  • Passwords are hashed using bcrypt (never stored in plain text)
  • Sessions use JWT tokens with configurable expiration
  • Magic link and OAuth (Google) sign-in options are available
  • Multi-factor authentication can be enabled for admin accounts

Encryption

  • In transit — All data is encrypted using TLS 1.2+ between your site and the database
  • At rest — Database storage is encrypted using AES-256
  • Backups — Automated daily backups with point-in-time recovery
Supabase is SOC 2 Type II compliant and GDPR ready. Your data is hosted in secure cloud infrastructure with geographic redundancy.

What you should do

  • Use strong passwords for all admin accounts
  • Enable two-factor authentication for admin users
  • Regularly review team member access and revoke inactive accounts
  • Never share database credentials or API keys in plain text

Was this article helpful?

Related Articles

Enabling MLS on Your Site

How to activate the MLS/IDX feature toggle and connect resale data.

MLS/IDX Integration

MLS Data Sync and Freshness

How the cron sync works and how often MLS data is updated.

MLS/IDX Integration

API Keys Management

How to manage third-party API keys for integrations.

Integrations & Settings

Back to Technical FAQ