Coder Social home page Coder Social logo

hideoyanagi / mongoid_userstamp Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nosolosoftware/mongoid_userstamp

0.0 1.0 0.0 103 KB

Userstamp for created and updated columns within mongoid

Home Page: https://github.com/tbpro/mongoid_userstamp

License: MIT License

Ruby 100.00%

mongoid_userstamp's Introduction

MongoidUserstamp Build Status

MongoidUserstamp adds stamp columns for created by and updated by informations within rails applications.

Install

gem 'mongoid_userstamp'

Usage

# Default config
Mongoid::Userstamp.configure do |c|
  c.user_reader = :current_user
  c.user_model = :user

  c.created_column = :created_by
  c.created_accessor = :creator

  c.updated_column = :updated_by
  c.updated_accessor = :updator
end

# Example model
class Person
  include Mongoid::Document
  include Mongoid::Userstamp
end

# Create instance
p = Person.create

# Updater ObjectID or nil
p.created_by
# => BSON::ObjectId('4f7c719f476da850ba000039')

# Updater instance or nil
p.creator
# => <User _id: 4f7c719f476da850ba000039>

# Creater ObjectID or nil
p.updated_by
# => BSON::ObjectId('4f7c719f476da850ba000039')

# Creater instance or nil
p.updator
# => <User _id: 4f7c719f476da850ba000039>

Credits

Copyright (c) 2012 Thomas Boerger Programmierung http://www.tbpro.de

mongoid_userstamp's People

Contributors

hiasinho avatar tacomanator avatar hideoyanagi avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.