From 71854ea1b4a6454a1fc366bb1b4fd775c82062af Mon Sep 17 00:00:00 2001 From: maneesh-kumar-thakur Date: Tue, 19 May 2026 16:57:34 +0530 Subject: [PATCH] chore: rebrand all references from Maneesh-Relanto to maneesh-kumar-thakur --- .github/BRANCH_PROTECTION.md | 18 +++++++-------- .github/CODEOWNERS | 28 +++++++++++------------ README.md | 2 +- docs/adapters/csharp.html | 2 +- docs/adapters/go.html | 2 +- docs/adapters/java.html | 2 +- docs/adapters/javascript.html | 2 +- docs/adapters/overview.html | 2 +- docs/adapters/python.html | 2 +- docs/advanced/architecture.html | 2 +- docs/advanced/extending.html | 2 +- docs/advanced/migration.html | 2 +- docs/advanced/security.html | 2 +- docs/api/engine.html | 2 +- docs/api/models.html | 2 +- docs/api/overview.html | 2 +- docs/api/protocols.html | 2 +- docs/api/rbac-api.html | 2 +- docs/api/storage.html | 2 +- docs/concepts/abac.html | 2 +- docs/concepts/multi-tenancy.html | 2 +- docs/concepts/overview.html | 2 +- docs/concepts/permissions.html | 2 +- docs/concepts/protocols.html | 2 +- docs/concepts/rbac-basics.html | 2 +- docs/concepts/role-hierarchy.html | 2 +- docs/contributing.html | 2 +- docs/docs/advanced/architecture.md | 4 ++-- docs/docs/contributing.md | 2 +- docs/docs/faq.md | 2 +- docs/docs/getting-started/installation.md | 2 +- docs/docs/guides/performance.md | 8 +++---- docs/docusaurus.config.js | 4 ++-- docs/faq.html | 2 +- docs/features/permissions-matrix.html | 2 +- docs/getting-started/first-app.html | 2 +- docs/getting-started/installation.html | 2 +- docs/getting-started/quick-start.html | 2 +- docs/guides/attribute-based.html | 2 +- docs/guides/basic-rbac.html | 2 +- docs/guides/custom-storage.html | 2 +- docs/guides/hierarchical-roles.html | 2 +- docs/guides/multi-tenant.html | 2 +- docs/guides/performance.html | 2 +- docs/intro.html | 2 +- repo-health/badges/shield-configs.md | 6 ++--- temp/PROJECT_STATUS.md | 2 +- test-apps/01-streamlit-ui/DEPLOYMENT.md | 2 +- 48 files changed, 76 insertions(+), 76 deletions(-) diff --git a/.github/BRANCH_PROTECTION.md b/.github/BRANCH_PROTECTION.md index e177d18..11b6db6 100644 --- a/.github/BRANCH_PROTECTION.md +++ b/.github/BRANCH_PROTECTION.md @@ -4,7 +4,7 @@ This document outlines the recommended branch protection settings for the RBAC Algorithm repository to ensure code quality, security, and proper review processes. ## Repository Information -- **Repository**: `Maneesh-Relanto/RBAC-algorithm` +- **Repository**: `maneesh-kumar-thakur/RBAC-algorithm` - **Type**: Public - **Protected Branches**: `main`, `gh-pages` @@ -82,7 +82,7 @@ Since `gh-pages` is typically used for automated documentation deployments: ### Step 1: Access Branch Protection Settings ``` -1. Go to: https://github.com/Maneesh-Relanto/RBAC-algorithm +1. Go to: https://github.com/maneesh-kumar-thakur/RBAC-algorithm 2. Navigate to: Settings → Branches 3. Click "Add branch protection rule" or edit existing rules ``` @@ -169,21 +169,21 @@ Create `.github/CODEOWNERS`: # RBAC Algorithm Code Owners # Default owner for everything -* @Maneesh-Relanto +* @maneesh-kumar-thakur # Core RBAC implementation -/src/rbac/ @Maneesh-Relanto +/src/rbac/ @maneesh-kumar-thakur # Tests require review -/tests/ @Maneesh-Relanto +/tests/ @maneesh-kumar-thakur # Documentation -/docs/ @Maneesh-Relanto -*.md @Maneesh-Relanto +/docs/ @maneesh-kumar-thakur +*.md @maneesh-kumar-thakur # Security-sensitive files -/schemas/ @Maneesh-Relanto -/scripts/ @Maneesh-Relanto +/schemas/ @maneesh-kumar-thakur +/scripts/ @maneesh-kumar-thakur ``` ### 3. Repository Settings Checklist diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index c8c766b..73a2662 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,29 +1,29 @@ # Code Owners for RBAC Algorithm # Default owner for everything in the repo -* @Maneesh-Relanto +* @maneesh-kumar-thakur # Core RBAC implementation requires careful review -/src/rbac/ @Maneesh-Relanto +/src/rbac/ @maneesh-kumar-thakur # Test files must be reviewed to ensure coverage -/tests/ @Maneesh-Relanto +/tests/ @maneesh-kumar-thakur # Documentation changes -/docs/ @Maneesh-Relanto -/documentation/ @Maneesh-Relanto -*.md @Maneesh-Relanto +/docs/ @maneesh-kumar-thakur +/documentation/ @maneesh-kumar-thakur +*.md @maneesh-kumar-thakur # Security-sensitive files require extra scrutiny -/schemas/ @Maneesh-Relanto -/scripts/ @Maneesh-Relanto +/schemas/ @maneesh-kumar-thakur +/scripts/ @maneesh-kumar-thakur # Configuration files -*.yml @Maneesh-Relanto -*.yaml @Maneesh-Relanto -*.json @Maneesh-Relanto -requirements.txt @Maneesh-Relanto -setup.py @Maneesh-Relanto +*.yml @maneesh-kumar-thakur +*.yaml @maneesh-kumar-thakur +*.json @maneesh-kumar-thakur +requirements.txt @maneesh-kumar-thakur +setup.py @maneesh-kumar-thakur # GitHub workflows and actions -/.github/ @Maneesh-Relanto +/.github/ @maneesh-kumar-thakur diff --git a/README.md b/README.md index d4a108a..373c034 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ A production-ready, high-performance Role-Based Access Control (RBAC) framework ```bash # Clone the repository -git clone https://github.com/Maneesh-Relanto/RBAC-algorithm.git +git clone https://github.com/maneesh-kumar-thakur/RBAC-algorithm.git cd RBAC-algorithm # Create virtual environment (recommended) diff --git a/docs/adapters/csharp.html b/docs/adapters/csharp.html index 788cc29..58f60ef 100644 --- a/docs/adapters/csharp.html +++ b/docs/adapters/csharp.html @@ -3,7 +3,7 @@ -csharp.Value.ToUpper()sharp | RBAC Algorithm +csharp.Value.ToUpper()sharp | RBAC Algorithm diff --git a/docs/adapters/go.html b/docs/adapters/go.html index ae605a1..ac22973 100644 --- a/docs/adapters/go.html +++ b/docs/adapters/go.html @@ -3,7 +3,7 @@ -go.Value.ToUpper()o | RBAC Algorithm +go.Value.ToUpper()o | RBAC Algorithm diff --git a/docs/adapters/java.html b/docs/adapters/java.html index 8d8d4d7..d87e6d6 100644 --- a/docs/adapters/java.html +++ b/docs/adapters/java.html @@ -3,7 +3,7 @@ -java.Value.ToUpper()ava | RBAC Algorithm +java.Value.ToUpper()ava | RBAC Algorithm diff --git a/docs/adapters/javascript.html b/docs/adapters/javascript.html index c8b15bd..9f66b11 100644 --- a/docs/adapters/javascript.html +++ b/docs/adapters/javascript.html @@ -3,7 +3,7 @@ -javascript.Value.ToUpper()avascript | RBAC Algorithm +javascript.Value.ToUpper()avascript | RBAC Algorithm diff --git a/docs/adapters/overview.html b/docs/adapters/overview.html index 61641de..f9b9347 100644 --- a/docs/adapters/overview.html +++ b/docs/adapters/overview.html @@ -3,7 +3,7 @@ -overview.Value.ToUpper()verview | RBAC Algorithm +overview.Value.ToUpper()verview | RBAC Algorithm diff --git a/docs/adapters/python.html b/docs/adapters/python.html index eeea8fe..491f89d 100644 --- a/docs/adapters/python.html +++ b/docs/adapters/python.html @@ -3,7 +3,7 @@ -python.Value.ToUpper()ython | RBAC Algorithm +python.Value.ToUpper()ython | RBAC Algorithm diff --git a/docs/advanced/architecture.html b/docs/advanced/architecture.html index 52a59cb..ced0210 100644 --- a/docs/advanced/architecture.html +++ b/docs/advanced/architecture.html @@ -3,7 +3,7 @@ -Architecture | RBAC Algorithm +Architecture | RBAC Algorithm diff --git a/docs/advanced/extending.html b/docs/advanced/extending.html index 0265717..583aa70 100644 --- a/docs/advanced/extending.html +++ b/docs/advanced/extending.html @@ -3,7 +3,7 @@ -extending.Value.ToUpper()xtending | RBAC Algorithm +extending.Value.ToUpper()xtending | RBAC Algorithm diff --git a/docs/advanced/migration.html b/docs/advanced/migration.html index 5e5c50e..b7e4d26 100644 --- a/docs/advanced/migration.html +++ b/docs/advanced/migration.html @@ -3,7 +3,7 @@ -migration.Value.ToUpper()igration | RBAC Algorithm +migration.Value.ToUpper()igration | RBAC Algorithm diff --git a/docs/advanced/security.html b/docs/advanced/security.html index 24a2914..3755774 100644 --- a/docs/advanced/security.html +++ b/docs/advanced/security.html @@ -3,7 +3,7 @@ -security.Value.ToUpper()ecurity | RBAC Algorithm +security.Value.ToUpper()ecurity | RBAC Algorithm diff --git a/docs/api/engine.html b/docs/api/engine.html index a5b8255..6d10a5c 100644 --- a/docs/api/engine.html +++ b/docs/api/engine.html @@ -3,7 +3,7 @@ -engine.Value.ToUpper()ngine | RBAC Algorithm +engine.Value.ToUpper()ngine | RBAC Algorithm diff --git a/docs/api/models.html b/docs/api/models.html index f31e2ca..17d7f70 100644 --- a/docs/api/models.html +++ b/docs/api/models.html @@ -3,7 +3,7 @@ -models.Value.ToUpper()odels | RBAC Algorithm +models.Value.ToUpper()odels | RBAC Algorithm diff --git a/docs/api/overview.html b/docs/api/overview.html index a02dd9c..52aeb34 100644 --- a/docs/api/overview.html +++ b/docs/api/overview.html @@ -3,7 +3,7 @@ -overview.Value.ToUpper()verview | RBAC Algorithm +overview.Value.ToUpper()verview | RBAC Algorithm diff --git a/docs/api/protocols.html b/docs/api/protocols.html index 35f768a..b375256 100644 --- a/docs/api/protocols.html +++ b/docs/api/protocols.html @@ -3,7 +3,7 @@ -protocols.Value.ToUpper()rotocols | RBAC Algorithm +protocols.Value.ToUpper()rotocols | RBAC Algorithm diff --git a/docs/api/rbac-api.html b/docs/api/rbac-api.html index 07ef31f..5acfe8e 100644 --- a/docs/api/rbac-api.html +++ b/docs/api/rbac-api.html @@ -3,7 +3,7 @@ -rbac api.Value.ToUpper()bac api | RBAC Algorithm +rbac api.Value.ToUpper()bac api | RBAC Algorithm diff --git a/docs/api/storage.html b/docs/api/storage.html index c97fc1d..5834339 100644 --- a/docs/api/storage.html +++ b/docs/api/storage.html @@ -3,7 +3,7 @@ -storage.Value.ToUpper()torage | RBAC Algorithm +storage.Value.ToUpper()torage | RBAC Algorithm diff --git a/docs/concepts/abac.html b/docs/concepts/abac.html index 2206996..4dca519 100644 --- a/docs/concepts/abac.html +++ b/docs/concepts/abac.html @@ -3,7 +3,7 @@ -Attribute-Based Access Control (ABAC) | RBAC Algorithm +Attribute-Based Access Control (ABAC) | RBAC Algorithm diff --git a/docs/concepts/multi-tenancy.html b/docs/concepts/multi-tenancy.html index 31e3209..bb4e1d1 100644 --- a/docs/concepts/multi-tenancy.html +++ b/docs/concepts/multi-tenancy.html @@ -3,7 +3,7 @@ -Multi-Tenancy | RBAC Algorithm +Multi-Tenancy | RBAC Algorithm diff --git a/docs/concepts/overview.html b/docs/concepts/overview.html index 95f4ab2..3e701f8 100644 --- a/docs/concepts/overview.html +++ b/docs/concepts/overview.html @@ -3,7 +3,7 @@ -Core Concepts Overview | RBAC Algorithm +Core Concepts Overview | RBAC Algorithm diff --git a/docs/concepts/permissions.html b/docs/concepts/permissions.html index e69146a..5c1d046 100644 --- a/docs/concepts/permissions.html +++ b/docs/concepts/permissions.html @@ -3,7 +3,7 @@ -Permissions | RBAC Algorithm +Permissions | RBAC Algorithm diff --git a/docs/concepts/protocols.html b/docs/concepts/protocols.html index e93de33..f1ee0a7 100644 --- a/docs/concepts/protocols.html +++ b/docs/concepts/protocols.html @@ -3,7 +3,7 @@ -Protocols | RBAC Algorithm +Protocols | RBAC Algorithm diff --git a/docs/concepts/rbac-basics.html b/docs/concepts/rbac-basics.html index ae1391f..fbcf7f9 100644 --- a/docs/concepts/rbac-basics.html +++ b/docs/concepts/rbac-basics.html @@ -3,7 +3,7 @@ -RBAC Basics | RBAC Algorithm +RBAC Basics | RBAC Algorithm diff --git a/docs/concepts/role-hierarchy.html b/docs/concepts/role-hierarchy.html index 29fc292..1a8baaa 100644 --- a/docs/concepts/role-hierarchy.html +++ b/docs/concepts/role-hierarchy.html @@ -3,7 +3,7 @@ -Role Hierarchy | RBAC Algorithm +Role Hierarchy | RBAC Algorithm diff --git a/docs/contributing.html b/docs/contributing.html index ae3f582..5115b90 100644 --- a/docs/contributing.html +++ b/docs/contributing.html @@ -3,7 +3,7 @@ -Contributing to RBAC Algorithm | RBAC Algorithm +Contributing to RBAC Algorithm | RBAC Algorithm diff --git a/docs/docs/advanced/architecture.md b/docs/docs/advanced/architecture.md index 2a77394..ef6d663 100644 --- a/docs/docs/advanced/architecture.md +++ b/docs/docs/advanced/architecture.md @@ -110,6 +110,6 @@ class CustomEngine(IAuthorizationEngine): ## Learn More -- [Protocol Specification](https://github.com/Maneesh-Relanto/RBAC-algorithm/blob/main/documentation/architecture/PROTOCOL.md) -- [Adapter Guidelines](https://github.com/Maneesh-Relanto/RBAC-algorithm/blob/main/documentation/architecture/ADAPTERS.md) +- [Protocol Specification](https://github.com/maneesh-kumar-thakur/RBAC-algorithm/blob/main/documentation/architecture/PROTOCOL.md) +- [Adapter Guidelines](https://github.com/maneesh-kumar-thakur/RBAC-algorithm/blob/main/documentation/architecture/ADAPTERS.md) - [API Reference](/docs/api/overview) diff --git a/docs/docs/contributing.md b/docs/docs/contributing.md index 088c6d0..ec1ed12 100644 --- a/docs/docs/contributing.md +++ b/docs/docs/contributing.md @@ -149,7 +149,7 @@ python benchmarks/quick_benchmark.py - ✅ Code quality grade A - ✅ Cognitive complexity <15 per function -See [repo-health/](https://github.com/Maneesh-Relanto/RBAC-algorithm/tree/main/repo-health) for baseline metrics. +See [repo-health/](https://github.com/maneesh-kumar-thakur/RBAC-algorithm/tree/main/repo-health) for baseline metrics. ### Documentation diff --git a/docs/docs/faq.md b/docs/docs/faq.md index 503a3db..7e6ee0e 100644 --- a/docs/docs/faq.md +++ b/docs/docs/faq.md @@ -72,7 +72,7 @@ RBAC Algorithm is optimized for production workloads: - **Lazy Loading** - Load data only when needed - **Indexing** - Storage backends use appropriate indexes -See [benchmark results](https://github.com/Maneesh-Relanto/RBAC-algorithm/tree/main/repo-health/baseline) for detailed metrics. +See [benchmark results](https://github.com/maneesh-kumar-thakur/RBAC-algorithm/tree/main/repo-health/baseline) for detailed metrics. ### Is it thread-safe? diff --git a/docs/docs/getting-started/installation.md b/docs/docs/getting-started/installation.md index 908c3e2..28cfda9 100644 --- a/docs/docs/getting-started/installation.md +++ b/docs/docs/getting-started/installation.md @@ -25,7 +25,7 @@ import TabItem from '@theme/TabItem'; #### 1. Clone the Repository ```bash -git clone https://github.com/Maneesh-Relanto/RBAC-algorithm.git +git clone https://github.com/maneesh-kumar-thakur/RBAC-algorithm.git cd RBAC-algorithm ``` diff --git a/docs/docs/guides/performance.md b/docs/docs/guides/performance.md index 9e73a58..2d75931 100644 --- a/docs/docs/guides/performance.md +++ b/docs/docs/guides/performance.md @@ -25,7 +25,7 @@ python benchmarks/quick_benchmark.py python benchmarks/performance_benchmark.py ``` -View baseline results in [repo-health/baseline](https://github.com/Maneesh-Relanto/RBAC-algorithm/tree/main/repo-health/baseline). +View baseline results in [repo-health/baseline](https://github.com/maneesh-kumar-thakur/RBAC-algorithm/tree/main/repo-health/baseline). ## Optimization Tips @@ -102,6 +102,6 @@ print(f"Memory: {10000/time_memory:.0f} checks/sec") View comprehensive quality and performance baselines: -- [Code Quality Report](https://github.com/Maneesh-Relanto/RBAC-algorithm/blob/main/repo-health/baseline/sonarqube-baseline.md) -- [Test Coverage Report](https://github.com/Maneesh-Relanto/RBAC-algorithm/blob/main/repo-health/baseline/coverage-baseline.txt) -- [Benchmark Results](https://github.com/Maneesh-Relanto/RBAC-algorithm/blob/main/repo-health/baseline/benchmark-baseline.txt) +- [Code Quality Report](https://github.com/maneesh-kumar-thakur/RBAC-algorithm/blob/main/repo-health/baseline/sonarqube-baseline.md) +- [Test Coverage Report](https://github.com/maneesh-kumar-thakur/RBAC-algorithm/blob/main/repo-health/baseline/coverage-baseline.txt) +- [Benchmark Results](https://github.com/maneesh-kumar-thakur/RBAC-algorithm/blob/main/repo-health/baseline/benchmark-baseline.txt) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 07edda9..85ce154 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -11,12 +11,12 @@ const config = { favicon: 'img/favicon.ico', // Set the production url of your site here - url: 'https://maneesh-relanto.github.io', + url: 'https://maneesh-kumar-thakur.github.io', // Set the // pathname under which your site is served baseUrl: '/RBAC-algorithm/', // GitHub pages deployment config. - organizationName: 'Maneesh-Relanto', + organizationName: 'maneesh-kumar-thakur', projectName: 'RBAC-algorithm', deploymentBranch: 'gh-pages', trailingSlash: false, diff --git a/docs/faq.html b/docs/faq.html index 2d55158..eb437cd 100644 --- a/docs/faq.html +++ b/docs/faq.html @@ -3,7 +3,7 @@ -FAQ - Frequently Asked Questions | RBAC Algorithm +FAQ - Frequently Asked Questions | RBAC Algorithm diff --git a/docs/features/permissions-matrix.html b/docs/features/permissions-matrix.html index 5f85cc8..50e47ae 100644 --- a/docs/features/permissions-matrix.html +++ b/docs/features/permissions-matrix.html @@ -3,7 +3,7 @@ -Permissions Matrix | RBAC Algorithm +Permissions Matrix | RBAC Algorithm diff --git a/docs/getting-started/first-app.html b/docs/getting-started/first-app.html index 5fb1a76..3ca3d84 100644 --- a/docs/getting-started/first-app.html +++ b/docs/getting-started/first-app.html @@ -3,7 +3,7 @@ -Build Your First App | RBAC Algorithm +Build Your First App | RBAC Algorithm diff --git a/docs/getting-started/installation.html b/docs/getting-started/installation.html index 18984a3..2d4c69a 100644 --- a/docs/getting-started/installation.html +++ b/docs/getting-started/installation.html @@ -3,7 +3,7 @@ -Installation | RBAC Algorithm +Installation | RBAC Algorithm diff --git a/docs/getting-started/quick-start.html b/docs/getting-started/quick-start.html index 449e1d8..c8fa1dc 100644 --- a/docs/getting-started/quick-start.html +++ b/docs/getting-started/quick-start.html @@ -3,7 +3,7 @@ -Quick Start | RBAC Algorithm +Quick Start | RBAC Algorithm diff --git a/docs/guides/attribute-based.html b/docs/guides/attribute-based.html index 1238294..5bc1433 100644 --- a/docs/guides/attribute-based.html +++ b/docs/guides/attribute-based.html @@ -3,7 +3,7 @@ -attribute based.Value.ToUpper()ttribute based | RBAC Algorithm +attribute based.Value.ToUpper()ttribute based | RBAC Algorithm diff --git a/docs/guides/basic-rbac.html b/docs/guides/basic-rbac.html index 6e58aa7..ae2b6ce 100644 --- a/docs/guides/basic-rbac.html +++ b/docs/guides/basic-rbac.html @@ -3,7 +3,7 @@ -basic rbac.Value.ToUpper()asic rbac | RBAC Algorithm +basic rbac.Value.ToUpper()asic rbac | RBAC Algorithm diff --git a/docs/guides/custom-storage.html b/docs/guides/custom-storage.html index 50b07d7..ab1cd50 100644 --- a/docs/guides/custom-storage.html +++ b/docs/guides/custom-storage.html @@ -3,7 +3,7 @@ -custom storage.Value.ToUpper()ustom storage | RBAC Algorithm +custom storage.Value.ToUpper()ustom storage | RBAC Algorithm diff --git a/docs/guides/hierarchical-roles.html b/docs/guides/hierarchical-roles.html index 7292510..f9c4693 100644 --- a/docs/guides/hierarchical-roles.html +++ b/docs/guides/hierarchical-roles.html @@ -3,7 +3,7 @@ -hierarchical roles.Value.ToUpper()ierarchical roles | RBAC Algorithm +hierarchical roles.Value.ToUpper()ierarchical roles | RBAC Algorithm diff --git a/docs/guides/multi-tenant.html b/docs/guides/multi-tenant.html index 1865779..627f875 100644 --- a/docs/guides/multi-tenant.html +++ b/docs/guides/multi-tenant.html @@ -3,7 +3,7 @@ -multi tenant.Value.ToUpper()ulti tenant | RBAC Algorithm +multi tenant.Value.ToUpper()ulti tenant | RBAC Algorithm diff --git a/docs/guides/performance.html b/docs/guides/performance.html index d1a3131..695835e 100644 --- a/docs/guides/performance.html +++ b/docs/guides/performance.html @@ -3,7 +3,7 @@ -performance.Value.ToUpper()erformance | RBAC Algorithm +performance.Value.ToUpper()erformance | RBAC Algorithm diff --git a/docs/intro.html b/docs/intro.html index 602bd8b..f098999 100644 --- a/docs/intro.html +++ b/docs/intro.html @@ -3,7 +3,7 @@ -Introduction | RBAC Algorithm +Introduction | RBAC Algorithm diff --git a/repo-health/badges/shield-configs.md b/repo-health/badges/shield-configs.md index 1d783f5..381851a 100644 --- a/repo-health/badges/shield-configs.md +++ b/repo-health/badges/shield-configs.md @@ -46,17 +46,17 @@ When GitHub Actions is set up: ### GitHub Actions Tests ```markdown -![Tests](https://github.com/Maneesh-Relanto/RBAC-algorithm/workflows/tests/badge.svg) +![Tests](https://github.com/maneesh-kumar-thakur/RBAC-algorithm/workflows/tests/badge.svg) ``` ### Codecov Coverage ```markdown -[![codecov](https://codecov.io/gh/Maneesh-Relanto/RBAC-algorithm/branch/main/graph/badge.svg)](https://codecov.io/gh/Maneesh-Relanto/RBAC-algorithm) +[![codecov](https://codecov.io/gh/maneesh-kumar-thakur/RBAC-algorithm/branch/main/graph/badge.svg)](https://codecov.io/gh/maneesh-kumar-thakur/RBAC-algorithm) ``` ### SonarCloud Quality Gate ```markdown -[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=maneesh-relanto_rbac-algorithm&metric=alert_status)](https://sonarcloud.io/dashboard?id=maneesh-relanto_rbac-algorithm) +[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=maneesh-kumar-thakur_rbac-algorithm&metric=alert_status)](https://sonarcloud.io/dashboard?id=maneesh-kumar-thakur_rbac-algorithm) ``` ## Badge Colors diff --git a/temp/PROJECT_STATUS.md b/temp/PROJECT_STATUS.md index 14a6676..da57a75 100644 --- a/temp/PROJECT_STATUS.md +++ b/temp/PROJECT_STATUS.md @@ -3,7 +3,7 @@ **Last Updated**: January 12, 2026 **Version**: 0.1.0 (Alpha) **Status**: 🟢 PUBLIC - Posted on LinkedIn -**Repository**: https://github.com/Maneesh-Relanto/RBAC-algorithm +**Repository**: https://github.com/maneesh-kumar-thakur/RBAC-algorithm **Marketing**: AI Security Campaign (Day 1 Posted) ## 🎯 Project Overview diff --git a/test-apps/01-streamlit-ui/DEPLOYMENT.md b/test-apps/01-streamlit-ui/DEPLOYMENT.md index b4363cc..61fc60a 100644 --- a/test-apps/01-streamlit-ui/DEPLOYMENT.md +++ b/test-apps/01-streamlit-ui/DEPLOYMENT.md @@ -12,7 +12,7 @@ This interactive RBAC Algorithm validator is ready to deploy! 2. **Create New App** - Click "New app" button - - Repository: `Maneesh-Relanto/RBAC-algorithm` + - Repository: `maneesh-kumar-thakur/RBAC-algorithm` - Branch: `main` (or your preferred branch) - Main file path: `test-apps/01-streamlit-ui/app.py` - App URL: Choose your custom subdomain