{"id":19725396,"url":"https://github.com/bodacious/blogit-admin","last_synced_at":"2026-04-02T02:23:15.295Z","repository":{"id":66871688,"uuid":"37900250","full_name":"Bodacious/blogit-admin","owner":"Bodacious","description":"Admin actions for the blogit rails engine","archived":false,"fork":false,"pushed_at":"2015-07-28T07:37:47.000Z","size":280,"stargazers_count":0,"open_issues_count":2,"forks_count":7,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-04-29T23:34:45.414Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Bodacious.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-06-23T06:00:51.000Z","updated_at":"2021-09-22T11:18:44.000Z","dependencies_parsed_at":"2023-02-23T10:46:02.221Z","dependency_job_id":null,"html_url":"https://github.com/Bodacious/blogit-admin","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Bodacious/blogit-admin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bodacious%2Fblogit-admin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bodacious%2Fblogit-admin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bodacious%2Fblogit-admin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bodacious%2Fblogit-admin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bodacious","download_url":"https://codeload.github.com/Bodacious/blogit-admin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bodacious%2Fblogit-admin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31294527,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T01:43:37.129Z","status":"online","status_checked_at":"2026-04-02T02:00:08.535Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-11T23:29:35.688Z","updated_at":"2026-04-02T02:23:15.273Z","avatar_url":"https://github.com/Bodacious.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Gem Version](https://badge.fury.io/rb/blogit-admin.png)](http://badge.fury.io/rb/blogit-admin)\n[![Code Climate](https://codeclimate.com/github/KatanaCode/blogit-admin/badges/gpa.svg)](https://codeclimate.com/github/KatanaCode/blogit-admin)\n[![Test Coverage](https://codeclimate.com/github/KatanaCode/blogit-admin/badges/coverage.svg)](https://codeclimate.com/github/KatanaCode/blogit-admin/coverage)\n[![Blogit-admin](https://gemnasium.com/KatanaCode/blogit-admin.png)](https://gemnasium.com/KatanaCode/blogit-admin)\n[![Travis CI](https://travis-ci.org/KatanaCode/blogit-admin.png)](https://travis-ci.org/KatanaCode/blogit-admin.png)\n[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/Bodacious/blogit-admin/trend.png)](https://bitdeli.com/free \"Bitdeli Badge\")\n\n\n# Blogit Admin\n\nAn admin backend for the [Blogit](http://github.com/katanacode/blogit) project\n\n## Installation\n\nFollow the installation instructions for blogit first of all.\n\nTo install blogit-admin...\n\nAdd this to your Gemfile\n\n``` ruby\ngem \"blogit-admin\"\n```\n\n...and run `bundle install` to install the gem.\n\nNext, run:\n\n``` bash\nbundle install\n``` \n\nthen add the following to your routes.rb file:\n\n``` bash\n# config/routes.rb\nmount Blogit::Admin::Engine =\u003e \"/blog/admin\"\n```\n\n## Authentication\n\n**Blogit-Admin** is not an authentication solution. Authentication is too application specific. Instead, we expect you to add your own authentication solution.\n\nTo make sure this works as expected with **Blogit Admin**, please make sure your `ApplicationController` defines the following methods:\n\n\n``` ruby\n# Checks that the current user has permission to access the current action.\n#   This method may redirect if you prefer.\n#\n# Returns true if the user (Blogger) is permitted\n# Returns false if the user (Blogger) is not permitted\ndef authenticate_blogger\nend\n\n# The sign out URL to leave the admin dashboard \n#\n# Returns a String with a URL path that your application must recognised with a DELETE HTTP request\ndef blogit_admin_sign_out_url\nend\n\n# The currently signed in Blogger. Must be an instance of an ActiveRecord::Base model that blogs (you've called the `blogs` method)\n# \n# Returns an ActiveRecord::Base subclass instance\ndef current_blogger\nend\n```\n\n\n## Configuration\n\nRunning `rails g blogit:install` will add an initializer file named blogit.rb. In here\nyou can set various configuration options. Please [read the documentation](http://rubydoc.info/gems/blogit/Blogit/Configuration) for a full list of the options available.\n\n\n\n## Issues\n\nIf you discover a problem with **Blogit** or **Blogit Admin**, please let us know about it. \n\n**Remember** to search the [issues list](https://github.com/KatanaCode/blogit-admin/issues) first in case your issue has already been raised\nby another Githuber\n\n## Documentation\n\nFull documentation is available here: http://rubydoc.info/gems/blogit-admin\n\n## Contributing\n\nYou're welcome to contribute to the **Blogit** project. Please consult the [contribution guidelines](http://blogit.katanacode.com/doc/file.Contributing.html) for more info.\n\n## Legal Stuff\n\nCopyright © 2011-2015 [Katana Code Ltd.](http://katanacode.com)\n\nSee [LEGAL](MIT-LICENSE) for full details.\n\n## Credits\n\nDeveloped by [Katana Code](http://katanacode.com)\n\n## About Katana Code\n\nKatana Code are [web developers based in Edinburgh, Scotland](http://katanacode.com/ \"Katana Code\").\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbodacious%2Fblogit-admin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbodacious%2Fblogit-admin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbodacious%2Fblogit-admin/lists"}